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).
This commit is contained in:
Kovacsics Robert (rmk35)
2014-12-17 13:54:13 +00:00
parent 374a9cc162
commit 6f608967f4
4 changed files with 54 additions and 0 deletions
@@ -0,0 +1,20 @@
{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;
};
}