2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchurl, openssl }:
|
2009-03-02 15:23:52 +00:00
|
|
|
|
2014-04-08 22:13:08 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "stunnel";
|
2021-03-06 19:24:49 +00:00
|
|
|
version = "5.58";
|
2014-04-08 22:13:08 +01:00
|
|
|
|
2009-03-02 15:23:52 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://www.stunnel.org/downloads/${pname}-${version}.tar.gz";
|
2021-03-06 19:24:49 +00:00
|
|
|
sha256 = "d4c14cc096577edca3f6a2a59c2f51869e35350b3988018ddf808c88e5973b79";
|
2018-02-01 00:00:00 +00:00
|
|
|
# please use the contents of "https://www.stunnel.org/downloads/${name}.tar.gz.sha256",
|
|
|
|
# not the output of `nix-prefetch-url`
|
2009-03-02 15:23:52 +00:00
|
|
|
};
|
|
|
|
|
2014-04-08 22:13:08 +01:00
|
|
|
buildInputs = [ openssl ];
|
2015-04-22 22:47:09 +01:00
|
|
|
configureFlags = [
|
2016-04-16 18:44:32 +01:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2015-04-22 22:47:09 +01:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
2018-12-14 08:19:39 +00:00
|
|
|
postInstall = ''
|
|
|
|
# remove legacy compatibility-wrapper that would require perl
|
|
|
|
rm $out/bin/stunnel3
|
|
|
|
'';
|
|
|
|
|
2015-04-22 22:47:09 +01:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2013-05-30 11:11:13 +01:00
|
|
|
|
2009-03-02 15:23:52 +00:00
|
|
|
meta = {
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Universal tls/ssl wrapper";
|
2020-01-22 10:26:22 +00:00
|
|
|
homepage = "https://www.stunnel.org/";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = [ lib.maintainers.thoughtpolice ];
|
2009-03-02 15:23:52 +00:00
|
|
|
};
|
|
|
|
}
|