2021-01-11 08:54:33 +01:00
|
|
|
{lib, stdenv, fetchurl, help2man}:
|
2014-12-17 14:54:13 +01:00
|
|
|
|
2015-03-26 23:20:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2020-08-14 01:29:21 +02:00
|
|
|
version = "1.6.3.622";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fatsort";
|
2015-03-26 23:20:12 +01:00
|
|
|
|
2014-12-17 14:54:13 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "mirror://sourceforge/fatsort/${pname}-${version}.tar.xz";
|
2020-08-14 01:29:21 +02:00
|
|
|
sha256 = "1z2nabm38lg56h05yx3jjsndbqxk1zbjcisrczzamypn13m98728";
|
2014-12-17 14:54:13 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ./fatsort-Makefiles.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ help2man ];
|
|
|
|
|
2020-05-10 21:36:32 +02:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://fatsort.sourceforge.net/";
|
2015-03-28 08:22:26 +01:00
|
|
|
description = "Sorts FAT partition table, for devices that don't do sorting of files";
|
2015-03-26 23:20:12 +01:00
|
|
|
maintainers = [ maintainers.kovirobi ];
|
|
|
|
license = licenses.gpl2;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.linux;
|
2014-12-17 14:54:13 +01:00
|
|
|
};
|
|
|
|
}
|