2021-01-15 10:19:50 +01:00
|
|
|
{ lib, stdenv, fetchurl, openssl, coreutils }:
|
2014-04-06 08:46:28 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "spiped";
|
2021-05-08 22:22:39 +02:00
|
|
|
version = "1.6.1";
|
2014-04-06 08:46:28 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://www.tarsnap.com/spiped/${pname}-${version}.tgz";
|
2021-05-08 22:22:39 +02:00
|
|
|
sha256 = "8d7089979db79a531a0ecc507b113ac6f2cf5f19305571eff1d3413e0ab33713";
|
2014-04-06 08:46:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
2014-04-08 13:22:44 +02:00
|
|
|
|
2021-05-08 22:51:32 +02:00
|
|
|
postPatch = ''
|
2014-09-20 14:05:15 +02:00
|
|
|
substituteInPlace libcperciva/cpusupport/Build/cpusupport.sh \
|
2021-05-08 22:22:39 +02:00
|
|
|
--replace "dirname" "${coreutils}/bin/dirname" \
|
2014-09-20 14:05:15 +02:00
|
|
|
--replace "2>/dev/null" "2>stderr.log"
|
|
|
|
|
2021-05-08 22:22:39 +02:00
|
|
|
substituteInPlace libcperciva/POSIX/posix-l.sh \
|
2014-09-20 14:05:15 +02:00
|
|
|
--replace "rm" "${coreutils}/bin/rm" \
|
|
|
|
--replace "2>/dev/null" "2>stderr.log"
|
2021-05-09 00:22:52 +02:00
|
|
|
'';
|
2014-04-12 04:35:08 +02:00
|
|
|
|
2014-04-06 08:46:28 +02:00
|
|
|
installPhase = ''
|
2021-05-08 22:51:32 +02:00
|
|
|
runHook preInstall
|
2014-04-06 08:46:28 +02:00
|
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
|
|
make install BINDIR=$out/bin MAN1DIR=$out/share/man/man1
|
2021-05-08 22:51:32 +02:00
|
|
|
runHook postInstall
|
2014-04-06 08:46:28 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Utility for secure encrypted channels between sockets";
|
2014-04-06 08:46:28 +02:00
|
|
|
homepage = "https://www.tarsnap.com/spiped.html";
|
2021-01-15 10:19:50 +01:00
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.thoughtpolice ];
|
2014-04-06 08:46:28 +02:00
|
|
|
};
|
|
|
|
}
|