mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
stunnel: adopt, bump to version 5.01
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
e49e74ebf4
commit
dcd0e68b17
|
@ -1,22 +1,22 @@
|
|||
{ stdenv, fetchurl, openssl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "stunnel-5.00";
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "stunnel-${version}";
|
||||
version = "5.01";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.stunnel.org/downloads/stunnel-5.00.tar.gz;
|
||||
sha256 = "04xwfppvmj0wrzar3rbypax93jb10f1skh3gq86gy6pglx96v648";
|
||||
url = "http://www.stunnel.org/downloads/${name}.tar.gz";
|
||||
sha256 = "0sw87x7yrgjx43a5x0cy71p2vr5j0l8n5pv49hq159p8zxcbyr95";
|
||||
};
|
||||
|
||||
buildInputs = [openssl];
|
||||
buildInputs = [ openssl ];
|
||||
configureFlags = [ "--with-ssl=${openssl}" ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-ssl=${openssl}"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Stunnel - Universal SSL wrapper";
|
||||
homepage = http://www.stunnel.org/;
|
||||
license = "GPLv2";
|
||||
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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue