2013-11-28 23:36:30 +00:00
|
|
|
{ stdenv, fetchurl, zlib, pcre }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-11-30 13:43:31 +00:00
|
|
|
name = "tintin-2.01.92";
|
2013-11-28 23:36:30 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
2019-11-30 13:43:31 +00:00
|
|
|
sha256 = "0id8rd2yhh6ccjnlwyixflsay1rq3sw6pwlhz1ic3nzj22cd91ik";
|
2013-11-28 23:36:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib pcre ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd src
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-06 23:05:18 +01:00
|
|
|
description = "A free MUD client for macOS, Linux and Windows";
|
2013-11-28 23:36:30 +00:00
|
|
|
homepage = http://tintin.sourceforge.net;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|