tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
tinyfugue: init at 50b8
Kiba Fox
9 years ago
151edd44
e70a2bad
+40
3 changed files
expand all
collapse all
unified
split
lib
maintainers.nix
pkgs
games
tinyfugue
default.nix
top-level
all-packages.nix
+1
lib/maintainers.nix
···
213
213
kampfschlaefer = "Arnold Krille <arnold@arnoldarts.de>";
214
214
kevincox = "Kevin Cox <kevincox@kevincox.ca>";
215
215
khumba = "Bryan Gardiner <bog@khumba.net>";
216
216
+
KibaFox = "Kiba Fox <kiba.fox@foxypossibilities.com>";
216
217
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
217
218
koral = "Koral <koral@mailoo.org>";
218
219
kovirobi = "Kovacsics Robert <kovirobi@gmail.com>";
+37
pkgs/games/tinyfugue/default.nix
···
1
1
+
{ stdenv, fetchurl, ncurses, zlib
2
2
+
, openssl ? null
3
3
+
, sslSupport ? true
4
4
+
}:
5
5
+
6
6
+
with stdenv.lib;
7
7
+
8
8
+
assert sslSupport -> openssl != null;
9
9
+
10
10
+
stdenv.mkDerivation rec {
11
11
+
name = "tinyfugue-${version}";
12
12
+
version = "50b8";
13
13
+
verUrl = "5.0%20beta%208";
14
14
+
15
15
+
src = fetchurl {
16
16
+
url = "mirror://sourceforge/project/tinyfugue/tinyfugue/${verUrl}/tf-${version}.tar.gz";
17
17
+
sha256 = "12fra2fdwqj6ilv9wdkc33rkj343rdcf5jyff4yiwywlrwaa2l1p";
18
18
+
};
19
19
+
20
20
+
configureFlags = optional (!sslSupport) "--disable-ssl";
21
21
+
22
22
+
buildInputs =
23
23
+
[ ncurses zlib ]
24
24
+
++ optional sslSupport openssl;
25
25
+
26
26
+
meta = {
27
27
+
homepage = http://tinyfugue.sourceforge.net/;
28
28
+
description = "A terminal UI, screen-oriented MUD client";
29
29
+
longDescription = ''
30
30
+
TinyFugue, aka "tf", is a flexible, screen-oriented MUD client, for use
31
31
+
with any type of text MUD.
32
32
+
'';
33
33
+
license = licenses.gpl2;
34
34
+
platforms = ncurses.meta.platforms;
35
35
+
maintainers = [ maintainers.KibaFox ];
36
36
+
};
37
37
+
}
+2
pkgs/top-level/all-packages.nix
···
15667
15667
15668
15668
tintin = callPackage ../games/tintin { };
15669
15669
15670
15670
+
tinyfugue = callPackage ../games/tinyfugue { };
15671
15671
+
15670
15672
tome4 = callPackage ../games/tome4 { };
15671
15673
15672
15674
trackballs = callPackage ../games/trackballs {