1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 00:01:24 -04:00
nixpkgs/pkgs/games/tintin/default.nix

25 lines
580 B
Nix
Raw Normal View History

2013-11-28 18:36:30 -05:00
{ stdenv, fetchurl, zlib, pcre }:
stdenv.mkDerivation rec {
2016-11-04 11:29:22 -04:00
name = "tintin-2.01.1";
2013-11-28 18:36:30 -05:00
src = fetchurl {
url = "mirror://sourceforge/tintin/${name}.tar.gz";
2016-11-04 11:29:22 -04:00
sha256 = "195wrfcys8yy953gdrl1gxryhjnx9lg1vqgxm3dyzm8bi18aa2yc";
2013-11-28 18:36:30 -05:00
};
buildInputs = [ zlib pcre ];
preConfigure = ''
cd src
'';
meta = with stdenv.lib; {
description = "A free MUD client for macOS, Linux and Windows";
2013-11-28 18:36:30 -05:00
homepage = http://tintin.sourceforge.net;
license = licenses.gpl2;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}