python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / filesystems / fatsort / default.nix
blob6db496242d2441b25745a12a8b3b697c6f872cfe
1 {lib, stdenv, fetchurl, help2man}:
3 stdenv.mkDerivation rec {
4   version = "1.6.4.625";
5   pname = "fatsort";
7   src = fetchurl {
8     url = "mirror://sourceforge/fatsort/${pname}-${version}.tar.xz";
9     sha256 = "sha256-mm+JoGQLt4LYL/I6eAyfCuw9++RoLAqO2hV+CBBkLq0=";
10   };
12   patches = [ ./fatsort-Makefiles.patch ];
14   buildInputs = [ help2man ];
16   makeFlags = [ "PREFIX=${placeholder "out"}" ];
18   meta = with lib; {
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;
24   };