Files
nixpkgs/pkgs/by-name/sp/spiped/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

48 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
openssl,
coreutils,
nixosTests,
}:
stdenv.mkDerivation rec {
pname = "spiped";
version = "1.6.4";
src = fetchurl {
url = "https://www.tarsnap.com/spiped/spiped-${version}.tgz";
hash = "sha256-Qk+003adkSsE3kPSHMMnSM39MSHE8dJtVJmSpUZ44Go=";
};
buildInputs = [ openssl ];
postPatch = ''
substituteInPlace libcperciva/cpusupport/Build/cpusupport.sh \
--replace "dirname" "${coreutils}/bin/dirname" \
--replace "2>/dev/null" "2>stderr.log"
substituteInPlace libcperciva/POSIX/posix-l.sh \
--replace "rm" "${coreutils}/bin/rm" \
--replace "2>/dev/null" "2>stderr.log"
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share/man/man1
make install BINDIR=$out/bin MAN1DIR=$out/share/man/man1
runHook postInstall
'';
passthru.tests.spiped = nixosTests.spiped;
meta = {
description = "Utility for secure encrypted channels between sockets";
homepage = "https://www.tarsnap.com/spiped.html";
license = lib.licenses.bsd2;
platforms = lib.platforms.unix;
maintainers = [ lib.maintainers.thoughtpolice ];
};
}