nixpkgs/pkgs/tools/filesystems/fatsort/default.nix
Ryan Mulligan b3b3205101 fatsort: 1.3.365 -> 1.4.2.439
Semi-automatic update generated by https://github.com/ryantm/nix-update tools.

This update was made based on information from https://repology.org/metapackage/fatsort/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/b33c7wq3ps8qwpx6yy05ml23k764i6cm-fatsort-1.4.2.439/bin/fatsort -h` got 0 exit code
- ran `/nix/store/b33c7wq3ps8qwpx6yy05ml23k764i6cm-fatsort-1.4.2.439/bin/fatsort --help` got 0 exit code
- directory tree listing: https://gist.github.com/9465f304d46013ae6d70d46558fd0c45
2018-03-30 10:18:30 +01:00

25 lines
641 B
Nix

{stdenv, fetchurl, help2man}:
stdenv.mkDerivation rec {
version = "1.4.2.439";
name = "fatsort-${version}";
src = fetchurl {
url = "mirror://sourceforge/fatsort/${name}.tar.xz";
sha256 = "1q51qq69854kr12knhyqjv7skj95qld6j04pv5v3xvxs0y9zkg5x";
};
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;
};
}