1 {lib, stdenv, fetchurl, help2man}:
3 stdenv.mkDerivation rec {
8 url = "mirror://sourceforge/fatsort/${pname}-${version}.tar.xz";
9 sha256 = "sha256-mm+JoGQLt4LYL/I6eAyfCuw9++RoLAqO2hV+CBBkLq0=";
12 patches = [ ./fatsort-Makefiles.patch ];
14 buildInputs = [ help2man ];
16 makeFlags = [ "PREFIX=${placeholder "out"}" ];
19 homepage = "http://fatsort.sourceforge.net/";
20 description = "Sorts FAT partition table, for devices that don't do sorting of files";
21 maintainers = [ maintainers.kovirobi ];
22 license = licenses.gpl2;
23 platforms = platforms.linux;