summary refs log tree commit diff
path: root/pkgs/tools/filesystems/fatsort/default.nix
blob: 3e4425847fa0369a9e86412006bff74218709c35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{stdenv, fetchurl, help2man}:

stdenv.mkDerivation rec {
  version = "1.3.365";
  name = "fatsort-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/fatsort/${name}.tar.gz";
    sha256 = "0g9zn2ns86g7zmy0y8hw1w1zhnd51hy8yl6kflyhxs49n5sc7b3p";
  };

  patches = [ ./fatsort-Makefiles.patch ];

  buildInputs = [ help2man ];

  meta = with stdenv.lib; {
    homepage = http://fatsort.sourceforge.net/;
    description = "Sorts FAT partition table, for devices that don't do sorting of files";
    maintainers = [ maintainers.kovirobi ];
    license = licenses.gpl2;
    inherit version;
    platforms = platforms.linux;
  };
}