nixpkgs/pkgs/games/tintin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
971 B
Nix
Raw Normal View History

{ stdenv, fetchurl, lib, zlib, pcre
2021-08-24 10:32:05 +02:00
, memorymappingHook, memstreamHook
, 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
};
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
'';
meta = with lib; {
description = "A free MUD client for macOS, Linux and Windows";
homepage = "http://tintin.sourceforge.net";
2013-11-29 00:36:30 +01:00
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}