nixpkgs/pkgs/tools/filesystems/fatsort/default.nix

25 lines
641 B
Nix
Raw Normal View History

{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/;
2015-03-28 07:22:26 +00:00
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;
};
}