tintin: add expression
This commit is contained in:
parent
4da388351a
commit
d4789829fa
24
pkgs/games/tintin/default.nix
Normal file
24
pkgs/games/tintin/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ stdenv, fetchurl, zlib, pcre }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tintin-2.00.9";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/tintin/${name}.tar.gz";
|
||||||
|
sha256 = "0x8jakxx7hh7b0z6vjcxyrda0afbz2s2yy7mvrbxjffyc2dyxzna";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ zlib pcre ];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
cd src
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A free MUD client for Mac OS X, Linux and Windows";
|
||||||
|
homepage = http://tintin.sourceforge.net;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -9476,6 +9476,8 @@ let
|
|||||||
|
|
||||||
tennix = callPackage ../games/tennix { };
|
tennix = callPackage ../games/tennix { };
|
||||||
|
|
||||||
|
tintin = callPackage ../games/tintin { };
|
||||||
|
|
||||||
tpm = callPackage ../games/thePenguinMachine { };
|
tpm = callPackage ../games/thePenguinMachine { };
|
||||||
|
|
||||||
tremulous = callPackage ../games/tremulous { };
|
tremulous = callPackage ../games/tremulous { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user