4a3b755cc8
Signed-off-by: Austin Seipp <aseipp@pobox.com>
23 lines
612 B
Nix
23 lines
612 B
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "stunnel-${version}";
|
|
version = "5.14";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.stunnel.org/downloads/${name}.tar.gz";
|
|
sha256 = "0nk9cjrgpa54sphykizqx4kayrq71z1zmwdsr1lvlbmq3pyb95r1";
|
|
};
|
|
|
|
buildInputs = [ openssl ];
|
|
configureFlags = [ "--with-ssl=${openssl}" ];
|
|
|
|
meta = {
|
|
description = "universal tls/ssl wrapper";
|
|
homepage = "http://www.stunnel.org/";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
|
};
|
|
}
|