nixpkgs/pkgs/tools/networking/stunnel/default.nix

39 lines
1011 B
Nix
Raw Normal View History

{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
pname = "stunnel";
2019-11-29 17:19:53 +03:00
version = "5.56";
src = fetchurl {
url = "https://www.stunnel.org/downloads/${pname}-${version}.tar.gz";
2019-11-29 17:19:53 +03:00
sha256 = "08kb4gi9fzqngrczykvba6xhaxhq9m4wmdbhxvgrva5rasrvz13k";
2018-02-01 03:00:00 +03:00
# please use the contents of "https://www.stunnel.org/downloads/${name}.tar.gz.sha256",
# not the output of `nix-prefetch-url`
};
buildInputs = [ openssl ];
2015-04-23 00:47:09 +03:00
configureFlags = [
"--with-ssl=${openssl.dev}"
2015-04-23 00:47:09 +03:00
"--sysconfdir=/etc"
"--localstatedir=/var"
];
2018-12-14 11:19:39 +03:00
postInstall = ''
# remove legacy compatibility-wrapper that would require perl
rm $out/bin/stunnel3
'';
2015-04-23 00:47:09 +03:00
installFlags = [
"sysconfdir=\${out}/etc"
"localstatedir=\${TMPDIR}"
];
meta = {
description = "Universal tls/ssl wrapper";
homepage = "https://www.stunnel.org/";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}