Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

tintin: add expression

+26
+24
pkgs/games/tintin/default.nix
··· 1 + { stdenv, fetchurl, zlib, pcre }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "tintin-2.00.9"; 5 + 6 + src = fetchurl { 7 + url = "mirror://sourceforge/tintin/${name}.tar.gz"; 8 + sha256 = "0x8jakxx7hh7b0z6vjcxyrda0afbz2s2yy7mvrbxjffyc2dyxzna"; 9 + }; 10 + 11 + buildInputs = [ zlib pcre ]; 12 + 13 + preConfigure = '' 14 + cd src 15 + ''; 16 + 17 + meta = with stdenv.lib; { 18 + description = "A free MUD client for Mac OS X, Linux and Windows"; 19 + homepage = http://tintin.sourceforge.net; 20 + license = licenses.gpl2; 21 + maintainers = with maintainers; [ lovek323 ]; 22 + platforms = platforms.unix; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 9476 9476 9477 9477 tennix = callPackage ../games/tennix { }; 9478 9478 9479 + tintin = callPackage ../games/tintin { }; 9480 + 9479 9481 tpm = callPackage ../games/thePenguinMachine { }; 9480 9482 9481 9483 tremulous = callPackage ../games/tremulous { };