nixpkgs/pkgs/tools/filesystems/fatsort/default.nix
Kovacsics Robert (rmk35) 6f608967f4 Added package 'fatsort'.
Fatsort sorts partition table on FAT12/16/32 partitions for devices that
don't sort the files for themselves (e.g. some media players).
2014-12-17 13:54:13 +00:00

21 lines
558 B
Nix

{stdenv, fetchurl, help2man}:
stdenv.mkDerivation {
name = "fatsort";
src = fetchurl {
url = mirror://sourceforge/fatsort/fatsort-1.3.365.tar.gz;
sha256 = "0g9zn2ns86g7zmy0y8hw1w1zhnd51hy8yl6kflyhxs49n5sc7b3p";
};
patches = [ ./fatsort-Makefiles.patch ];
buildInputs = [ help2man ];
meta = {
homepage = http://fatsort.sourceforge.net/;
description = "Sorts FAT partition table, for devices that don't do sorting of files.";
maintainers = [ stdenv.lib.maintainers.kovirobi ];
license = stdenv.lib.licenses.gpl2;
};
}