2019-07-08 00:17:12 +02:00
|
|
|
{ stdenv, fetchurl, lib, zlib, pcre
|
2021-08-24 10:32:05 +02:00
|
|
|
, memorymappingHook, memstreamHook
|
2019-07-08 00:17:12 +02:00
|
|
|
, tlsSupport ? true, gnutls ? null
|
|
|
|
# ^ set { tlsSupport = false; } to reduce closure size by ~= 18.6 MB
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert tlsSupport -> gnutls != null;
|
2013-11-29 00:36:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-06-22 23:44:58 +02:00
|
|
|
pname = "tintin";
|
2021-10-28 12:22:57 +02:00
|
|
|
version = "2.02.12";
|
2013-11-29 00:36:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-22 23:44:58 +02:00
|
|
|
url = "mirror://sourceforge/tintin/tintin-${version}.tar.gz";
|
2021-10-28 12:22:57 +02:00
|
|
|
sha256 = "sha256-tvn9TywefNyM/0Fy16gAFJYbA5Q4DO2RgiCdw014GgA=";
|
2013-11-29 00:36:30 +01:00
|
|
|
};
|
|
|
|
|
2019-07-08 00:17:12 +02:00
|
|
|
nativeBuildInputs = lib.optional tlsSupport gnutls.dev;
|
2021-08-24 10:32:05 +02:00
|
|
|
buildInputs = [ zlib pcre ]
|
|
|
|
++ lib.optionals (stdenv.system == "x86_64-darwin") [ memorymappingHook memstreamHook ]
|
|
|
|
++ lib.optional tlsSupport gnutls;
|
2013-11-29 00:36:30 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd src
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-08-07 00:05:18 +02:00
|
|
|
description = "A free MUD client for macOS, Linux and Windows";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://tintin.sourceforge.net";
|
2013-11-29 00:36:30 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
2022-04-01 21:34:55 +02:00
|
|
|
mainProgram = "tt++";
|
2013-11-29 00:36:30 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|