nixpkgs/pkgs/games/tintin/default.nix
2020-01-30 16:47:47 +00:00

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.02.01";
src = fetchurl {
url = "mirror://sourceforge/tintin/${name}.tar.gz";
sha256 = "15ajs6d0rb3xchd46gyziciz9vv0ks75schk1s4hs7pr30yr7k6y";
};
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;
};
}