2014-04-12 06:35:08 +04:00
|
|
|
{ stdenv, fetchurl, openssl, coreutils }:
|
2014-04-06 10:46:28 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "spiped-${version}";
|
2015-04-03 00:27:19 +03:00
|
|
|
version = "1.5.0";
|
2014-04-06 10:46:28 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.tarsnap.com/spiped/${name}.tgz";
|
2015-04-03 00:27:19 +03:00
|
|
|
sha256 = "1mxcbxifr3bnj6ga8lz88y4bhff016i6kjdzwbb3gzb2zcs4pxxj";
|
2014-04-06 10:46:28 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
2014-04-08 15:22:44 +04:00
|
|
|
|
2014-09-20 16:05:15 +04:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace libcperciva/cpusupport/Build/cpusupport.sh \
|
|
|
|
--replace "2>/dev/null" "2>stderr.log"
|
|
|
|
|
|
|
|
substituteInPlace POSIX/posix-l.sh \
|
|
|
|
--replace "rm" "${coreutils}/bin/rm" \
|
|
|
|
--replace ">/dev/stderr" ">stderr.log" \
|
|
|
|
--replace "2>/dev/null" "2>stderr.log"
|
|
|
|
|
|
|
|
substituteInPlace POSIX/posix-cflags.sh \
|
|
|
|
--replace "rm" "${coreutils}/bin/rm" \
|
|
|
|
--replace ">/dev/stderr" ">stderr.log" \
|
|
|
|
--replace "2>/dev/null" "2>stderr.log"
|
2014-04-12 06:35:08 +04:00
|
|
|
'';
|
|
|
|
|
2014-04-06 10:46:28 +04:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/share/man/man1
|
|
|
|
make install BINDIR=$out/bin MAN1DIR=$out/share/man/man1
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2016-06-20 13:53:46 +03:00
|
|
|
description = "Utility for secure encrypted channels between sockets";
|
2014-04-06 10:46:28 +04:00
|
|
|
homepage = "https://www.tarsnap.com/spiped.html";
|
|
|
|
license = stdenv.lib.licenses.bsd2;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
|
|
};
|
|
|
|
}
|