2014-12-17 13:54:13 +00:00
|
|
|
{stdenv, fetchurl, help2man}:
|
|
|
|
|
2015-03-26 22:20:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-10-16 06:22:56 +01:00
|
|
|
version = "1.5.0.456";
|
2015-03-26 22:20:12 +00:00
|
|
|
name = "fatsort-${version}";
|
|
|
|
|
2014-12-17 13:54:13 +00:00
|
|
|
src = fetchurl {
|
2018-03-30 03:57:52 +01:00
|
|
|
url = "mirror://sourceforge/fatsort/${name}.tar.xz";
|
2018-10-16 06:22:56 +01:00
|
|
|
sha256 = "15fy2m4p9s8cfvnzdcd5ynkc2js0zklkkf34sjxdac7x2iwb8dd8";
|
2014-12-17 13:54:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./fatsort-Makefiles.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ help2man ];
|
|
|
|
|
2015-03-26 22:20:12 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-12-17 13:54:13 +00:00
|
|
|
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";
|
2015-03-26 22:20:12 +00:00
|
|
|
maintainers = [ maintainers.kovirobi ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
inherit version;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = platforms.linux;
|
2014-12-17 13:54:13 +00:00
|
|
|
};
|
|
|
|
}
|