9de076f45c
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.
31 lines
820 B
Nix
31 lines
820 B
Nix
{ 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";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
|
sha256 = "0id8rd2yhh6ccjnlwyixflsay1rq3sw6pwlhz1ic3nzj22cd91ik";
|
|
};
|
|
|
|
nativeBuildInputs = lib.optional tlsSupport gnutls.dev;
|
|
buildInputs = [ zlib pcre ] ++ lib.optional tlsSupport gnutls;
|
|
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A free MUD client for macOS, Linux and Windows";
|
|
homepage = http://tintin.sourceforge.net;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|