nixpkgs/pkgs/tools/networking/spiped/default.nix
Austin Seipp 49a5832805 spiped: 1.3.0 -> 1.4.1
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2014-09-20 07:39:44 -05:00

42 lines
1.2 KiB
Nix

{ stdenv, fetchurl, openssl, coreutils }:
stdenv.mkDerivation rec {
name = "spiped-${version}";
version = "1.4.1";
src = fetchurl {
url = "http://www.tarsnap.com/spiped/${name}.tgz";
sha256 = "1y642mn4jz2h83vhkji0l42r2l1hbzbwwlplc3xmr66zjj54psqf";
};
buildInputs = [ openssl ];
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"
'';
installPhase = ''
mkdir -p $out/bin $out/share/man/man1
make install BINDIR=$out/bin MAN1DIR=$out/share/man/man1
'';
meta = {
description = "utility for secure encrypted channels between sockets";
homepage = "https://www.tarsnap.com/spiped.html";
license = stdenv.lib.licenses.bsd2;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}