mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 04:12:44 +03:00
tinyfugue: init at 50b8
This commit is contained in:
parent
e70a2badc2
commit
151edd446d
@ -213,6 +213,7 @@
|
|||||||
kampfschlaefer = "Arnold Krille <arnold@arnoldarts.de>";
|
kampfschlaefer = "Arnold Krille <arnold@arnoldarts.de>";
|
||||||
kevincox = "Kevin Cox <kevincox@kevincox.ca>";
|
kevincox = "Kevin Cox <kevincox@kevincox.ca>";
|
||||||
khumba = "Bryan Gardiner <bog@khumba.net>";
|
khumba = "Bryan Gardiner <bog@khumba.net>";
|
||||||
|
KibaFox = "Kiba Fox <kiba.fox@foxypossibilities.com>";
|
||||||
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
kkallio = "Karn Kallio <tierpluspluslists@gmail.com>";
|
||||||
koral = "Koral <koral@mailoo.org>";
|
koral = "Koral <koral@mailoo.org>";
|
||||||
kovirobi = "Kovacsics Robert <kovirobi@gmail.com>";
|
kovirobi = "Kovacsics Robert <kovirobi@gmail.com>";
|
||||||
|
37
pkgs/games/tinyfugue/default.nix
Normal file
37
pkgs/games/tinyfugue/default.nix
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ stdenv, fetchurl, ncurses, zlib
|
||||||
|
, openssl ? null
|
||||||
|
, sslSupport ? true
|
||||||
|
}:
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
|
|
||||||
|
assert sslSupport -> openssl != null;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "tinyfugue-${version}";
|
||||||
|
version = "50b8";
|
||||||
|
verUrl = "5.0%20beta%208";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/project/tinyfugue/tinyfugue/${verUrl}/tf-${version}.tar.gz";
|
||||||
|
sha256 = "12fra2fdwqj6ilv9wdkc33rkj343rdcf5jyff4yiwywlrwaa2l1p";
|
||||||
|
};
|
||||||
|
|
||||||
|
configureFlags = optional (!sslSupport) "--disable-ssl";
|
||||||
|
|
||||||
|
buildInputs =
|
||||||
|
[ ncurses zlib ]
|
||||||
|
++ optional sslSupport openssl;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://tinyfugue.sourceforge.net/;
|
||||||
|
description = "A terminal UI, screen-oriented MUD client";
|
||||||
|
longDescription = ''
|
||||||
|
TinyFugue, aka "tf", is a flexible, screen-oriented MUD client, for use
|
||||||
|
with any type of text MUD.
|
||||||
|
'';
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = ncurses.meta.platforms;
|
||||||
|
maintainers = [ maintainers.KibaFox ];
|
||||||
|
};
|
||||||
|
}
|
@ -15667,6 +15667,8 @@ in
|
|||||||
|
|
||||||
tintin = callPackage ../games/tintin { };
|
tintin = callPackage ../games/tintin { };
|
||||||
|
|
||||||
|
tinyfugue = callPackage ../games/tinyfugue { };
|
||||||
|
|
||||||
tome4 = callPackage ../games/tome4 { };
|
tome4 = callPackage ../games/tome4 { };
|
||||||
|
|
||||||
trackballs = callPackage ../games/trackballs {
|
trackballs = callPackage ../games/trackballs {
|
||||||
|
Loading…
Reference in New Issue
Block a user