3d55811e1c
- update version to match #165797 - change homepage to the independent project site (which sourceforge now redirects to) - update source to github (linked from project site above) - get rid of the "option" to exclude tlsSupport per PR feedback
33 lines
792 B
Nix
33 lines
792 B
Nix
{ stdenv, fetchFromGitHub, lib, zlib, pcre
|
|
, memorymappingHook, memstreamHook
|
|
, gnutls
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tintin";
|
|
version = "2.02.20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "scandum";
|
|
repo = "tintin";
|
|
rev = version;
|
|
hash = "sha256-H9Cjg/GkyV50pgewv77zOJ8/Op78P9sQmZ5LorO4L+A=";
|
|
};
|
|
|
|
buildInputs = [ zlib pcre gnutls ]
|
|
++ lib.optionals (stdenv.system == "x86_64-darwin") [ memorymappingHook memstreamHook ];
|
|
|
|
preConfigure = ''
|
|
cd src
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A free MUD client for macOS, Linux and Windows";
|
|
homepage = "https://tintin.mudhalla.net/index.php";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ abathur ];
|
|
mainProgram = "tt++";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|