3270aa896b
as it is the official name since 2016 https://en.wikipedia.org/wiki/Macintosh_operating_systems#Desktop exception are parts refering to older versions of macOS like "GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later [...]"
25 lines
580 B
Nix
25 lines
580 B
Nix
{ stdenv, fetchurl, zlib, pcre }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tintin-2.01.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
|
sha256 = "195wrfcys8yy953gdrl1gxryhjnx9lg1vqgxm3dyzm8bi18aa2yc";
|
|
};
|
|
|
|
buildInputs = [ zlib pcre ];
|
|
|
|
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;
|
|
};
|
|
}
|