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:
@@ -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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user