1 { stdenv, fetchFromGitHub, lib, zlib, pcre
2 , memorymappingHook, memstreamHook
6 stdenv.mkDerivation rec {
10 src = fetchFromGitHub {
14 hash = "sha256-emCxA5+YB4S7QXxRqkDKN1xeWttR857VfGzFQ1cGbYg=";
17 buildInputs = [ zlib pcre gnutls ]
18 ++ lib.optionals (stdenv.system == "x86_64-darwin") [ memorymappingHook memstreamHook ];
25 description = "A free MUD client for macOS, Linux and Windows";
26 homepage = "https://tintin.mudhalla.net/index.php";
27 license = licenses.gpl3Plus;
28 maintainers = with maintainers; [ abathur ];
30 platforms = platforms.unix;