Merge pull request #75648 from jorsn/tintin.add-ssl
tintin: added ssl support via gnutls
This commit is contained in:
commit
60820d8d83
|
@ -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