tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
tintin: add expression
Jason "Don" O'Conal
12 years ago
d4789829
4da38835
+26
2 changed files
expand all
collapse all
unified
split
pkgs
games
tintin
default.nix
top-level
all-packages.nix
+24
pkgs/games/tintin/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
9477
tennix = callPackage ../games/tennix { };
9478
0
0
9479
tpm = callPackage ../games/thePenguinMachine { };
9480
9481
tremulous = callPackage ../games/tremulous { };
···
9476
9477
tennix = callPackage ../games/tennix { };
9478
9479
+
tintin = callPackage ../games/tintin { };
9480
+
9481
tpm = callPackage ../games/thePenguinMachine { };
9482
9483
tremulous = callPackage ../games/tremulous { };