42 lines
1,000 B
Nix
42 lines
1,000 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
utmp,
|
|
musl-fts,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pax";
|
|
version = "20240817";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.mirbsd.org/MirOS/dist/mir/cpio/paxmirabilis-${version}.tgz";
|
|
sha256 = "sha256-6VXV06+Xrt4KP0Y6mlm4Po0Qg6rxQutvOIxUmn0YLms=";
|
|
};
|
|
|
|
buildInputs =
|
|
lib.optional stdenv.hostPlatform.isDarwin utmp
|
|
++ lib.optional stdenv.hostPlatform.isMusl musl-fts;
|
|
|
|
NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isMusl "-lfts";
|
|
|
|
buildPhase = ''
|
|
sh Build.sh -r -tpax
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dm555 pax $out/bin/pax
|
|
ln -s $out/bin/pax $out/bin/paxcpio
|
|
ln -s $out/bin/pax $out/bin/paxtar
|
|
install -Dm444 mans/pax{,cpio,tar}.1 -t $out/share/man/man1/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "POSIX standard archive tool from MirBSD";
|
|
homepage = "https://www.mirbsd.org/pax.htm";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ gebner ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|