1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-03 11:02:05 +00:00
nixpkgs/pkgs/tools/networking/stunnel/default.nix

32 lines
758 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "stunnel-${version}";
2016-09-24 03:26:25 +01:00
version = "5.36";
src = fetchurl {
url = "http://www.stunnel.org/downloads/${name}.tar.gz";
2016-09-24 03:26:25 +01:00
sha256 = "1smmwkzr0i6w4jwrjxazbyf82jq1qlg8x9zil5b51pzwzpy552gb";
};
buildInputs = [ openssl ];
2015-04-22 22:47:09 +01:00
configureFlags = [
"--with-ssl=${openssl.dev}"
2015-04-22 22:47:09 +01:00
"--sysconfdir=/etc"
"--localstatedir=/var"
];
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
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 ];
};
}