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:
Johannes Rosenberger 2019-07-08 00:17:12 +02:00 committed by Johannes Rosenberger
parent 4c142b0854
commit 9de076f45c

View file

@ -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 {
name = "tintin-2.01.92";
@ -8,7 +13,8 @@ stdenv.mkDerivation rec {
sha256 = "0id8rd2yhh6ccjnlwyixflsay1rq3sw6pwlhz1ic3nzj22cd91ik";
};
buildInputs = [ zlib pcre ];
nativeBuildInputs = lib.optional tlsSupport gnutls.dev;
buildInputs = [ zlib pcre ] ++ lib.optional tlsSupport gnutls;
preConfigure = ''
cd src