tintin: added ssl support via gnutls
Now passwords can be sent encrypted via tls. Closure size difference is +18.36 MB (+161.38%). Therefore there is a switch `tlsSupport ? true` to turn off tls.
This commit is contained in:
parent
4c142b0854
commit
9de076f45c
@ -1,4 +1,9 @@
|
|||||||
{ stdenv, fetchurl, zlib, pcre }:
|
{ stdenv, fetchurl, lib, zlib, pcre
|
||||||
|
, tlsSupport ? true, gnutls ? null
|
||||||
|
# ^ set { tlsSupport = false; } to reduce closure size by ~= 18.6 MB
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert tlsSupport -> gnutls != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "tintin-2.01.92";
|
name = "tintin-2.01.92";
|
||||||
@ -8,7 +13,8 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0id8rd2yhh6ccjnlwyixflsay1rq3sw6pwlhz1ic3nzj22cd91ik";
|
sha256 = "0id8rd2yhh6ccjnlwyixflsay1rq3sw6pwlhz1ic3nzj22cd91ik";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib pcre ];
|
nativeBuildInputs = lib.optional tlsSupport gnutls.dev;
|
||||||
|
buildInputs = [ zlib pcre ] ++ lib.optional tlsSupport gnutls;
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
cd src
|
cd src
|
||||||
|
Loading…
Reference in New Issue
Block a user