2009-03-02 16:23:52 +01:00
|
|
|
{ stdenv, fetchurl, openssl }:
|
|
|
|
|
2014-04-08 23:13:08 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "stunnel-${version}";
|
2017-04-20 23:37:24 +02:00
|
|
|
version = "5.41";
|
2014-04-08 23:13:08 +02:00
|
|
|
|
2009-03-02 16:23:52 +01:00
|
|
|
src = fetchurl {
|
2014-04-08 23:13:08 +02:00
|
|
|
url = "http://www.stunnel.org/downloads/${name}.tar.gz";
|
2017-04-20 23:37:24 +02:00
|
|
|
sha256 = "13qld0b8w2yfs2kfwnqvhcg98warh8hcyk13rjxdwv8zxqhn6p7h";
|
2009-03-02 16:23:52 +01:00
|
|
|
};
|
|
|
|
|
2014-04-08 23:13:08 +02:00
|
|
|
buildInputs = [ openssl ];
|
2015-04-22 23:47:09 +02:00
|
|
|
configureFlags = [
|
2016-04-16 19:44:32 +02:00
|
|
|
"--with-ssl=${openssl.dev}"
|
2015-04-22 23:47:09 +02:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=\${TMPDIR}"
|
|
|
|
];
|
2013-05-30 12:11:13 +02:00
|
|
|
|
2009-03-02 16:23:52 +01:00
|
|
|
meta = {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "Universal tls/ssl wrapper";
|
2014-04-08 23:13:08 +02:00
|
|
|
homepage = "http://www.stunnel.org/";
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
2009-03-02 16:23:52 +01:00
|
|
|
};
|
|
|
|
}
|