mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
48 lines
1.1 KiB
Nix
48 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
help2man,
|
|
libiconv,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
version = "1.7.679";
|
|
pname = "fatsort";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/fatsort/fatsort-${finalAttrs.version}.tar.xz";
|
|
sha256 = "sha256-EBL1UTgmOdaeGU6r++mTQu3nyFaxzWeIKH+d/UvY0SI=";
|
|
};
|
|
|
|
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 = {
|
|
homepage = "http://fatsort.sourceforge.net/";
|
|
description = "Sorts FAT partition table, for devices that don't do sorting of files";
|
|
maintainers = [ lib.maintainers.kovirobi ];
|
|
license = lib.licenses.gpl2Plus;
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "fatsort";
|
|
};
|
|
})
|