Merge pull request #75648 from jorsn/tintin.add-ssl

tintin: added ssl support via gnutls
This commit is contained in:
Renaud 2019-12-20 23:31:28 +01:00 committed by GitHub
commit 60820d8d83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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