1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/games/tintin/default.nix

25 lines
581 B
Nix
Raw Normal View History

2013-11-28 23:36:30 +00:00
{ stdenv, fetchurl, zlib, pcre }:
stdenv.mkDerivation rec {
name = "tintin-2.01.91";
2013-11-28 23:36:30 +00:00
src = fetchurl {
url = "mirror://sourceforge/tintin/${name}.tar.gz";
sha256 = "0nb3przw84r5zaibhpcb8gxm5vllrchca663c3f650fm83asd5im";
2013-11-28 23:36:30 +00:00
};
buildInputs = [ zlib pcre ];
preConfigure = ''
cd src
'';
meta = with stdenv.lib; {
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;
};
}