2014-04-12 02:35:08 +00:00
|
|
|
{ stdenv, fetchurl, openssl, coreutils }:
|
2014-04-06 06:46:28 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "spiped-${version}";
|
|
|
|
version = "1.3.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.tarsnap.com/spiped/${name}.tgz";
|
|
|
|
sha256 = "1viglk61v1v2ga1n31r0h8rvib5gy2h02lhhbbnqh2s6ps1sjn4a";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openssl ];
|
2014-04-08 11:22:44 +00:00
|
|
|
patches = [ ./no-dev-stderr.patch ];
|
|
|
|
|
2014-04-12 02:35:08 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace POSIX/posix-l.sh --replace "rm" "${coreutils}/bin/rm"
|
|
|
|
'';
|
|
|
|
|
2014-04-06 06:46:28 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|