tinyfugue: init at 50b8

Kiba Fox 151edd44 e70a2bad

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