Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
help2man,
|
|
libiconv,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.6.5.640";
|
|
pname = "fatsort";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fatsort/${pname}-${version}.tar.xz";
|
|
sha256 = "sha256-Yw7OVtnrOlVSSvCuw6reeFQ2DrqUkXKmz7R2jLj75C4=";
|
|
};
|
|
|
|
buildInputs = [
|
|
help2man
|
|
libiconv
|
|
];
|
|
|
|
makeFlags = [
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
"LD=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"UNAME_O=${stdenv.hostPlatform.uname.system}"
|
|
"UNAME_S=${stdenv.hostPlatform.uname.system}"
|
|
];
|
|
|
|
# make install target is broken (DESTDIR usage is insane)
|
|
# it's easier to just skip make and install manually
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -D -m 755 ./src/fatsort $out/bin/fatsort
|
|
install -D -m 644 ./man/fatsort.1 $out/man/man1/fatsort.1
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with 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.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
mainProgram = "fatsort";
|
|
};
|
|
}
|