about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/filesystems/fatsort/default.nix
blob: 18d9097dacbcb4a1ed498bfabf02e26e8d6edd0d (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.5.0.456";
  name = "fatsort-${version}";

  src = fetchurl {
    url = "mirror://sourceforge/fatsort/${name}.tar.xz";
    sha256 = "15fy2m4p9s8cfvnzdcd5ynkc2js0zklkkf34sjxdac7x2iwb8dd8";
  };

  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;
  };
}