mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
b3b3205101
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
25 lines
641 B
Nix
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;
|
|
};
|
|
}
|