nixpkgs/pkgs/tools/filesystems/fatsort/default.nix
R. RyanTM 3da7fc8a57 fatsort: 1.4.2.439 -> 1.5.0.456
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fatsort/versions
2018-10-15 22:22:56 -07:00

25 lines
641 B
Nix

{stdenv, fetchurl, help2man}:
stdenv.mkDerivation rec {
version = "1.5.0.456";
name = "fatsort-${version}";
src = fetchurl {
url = "mirror://sourceforge/fatsort/${name}.tar.xz";
sha256 = "15fy2m4p9s8cfvnzdcd5ynkc2js0zklkkf34sjxdac7x2iwb8dd8";
};
patches = [ ./fatsort-Makefiles.patch ];
buildInputs = [ help2man ];
meta = with stdenv.lib; {
homepage = http://fatsort.sourceforge.net/;
description = "Sorts FAT partition table, for devices that don't do sorting of files";
maintainers = [ maintainers.kovirobi ];
license = licenses.gpl2;
inherit version;
platforms = platforms.linux;
};
}