2013-11-29 00:36:30 +01:00
|
|
|
{ stdenv, fetchurl, zlib, pcre }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-04-03 08:00:53 +02:00
|
|
|
name = "tintin-2.01.7";
|
2013-11-29 00:36:30 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
2019-04-03 08:00:53 +02:00
|
|
|
sha256 = "033n84pyxml3n3gd4dq0497n9w331bnrr1gppwipz9ashmq8jz7v";
|
2013-11-29 00:36:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ zlib pcre ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd src
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-07 00:05:18 +02:00
|
|
|
description = "A free MUD client for macOS, Linux and Windows";
|
2013-11-29 00:36:30 +01:00
|
|
|
homepage = http://tintin.sourceforge.net;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|