2048-in-terminal: init at 2015-01-15

Yes, another. With less seizure-inducing colours than n2048,
and working arrow keys.
This commit is contained in:
Tobias Geerinckx-Rice 2015-09-11 08:30:11 +02:00
parent 22838a8f99
commit 0b16704000
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, ncurses }:
let version = "2015-01-15"; in
stdenv.mkDerivation rec {
name = "2048-in-terminal-${version}";
src = fetchFromGitHub {
sha256 = "1fdfmyhh60sz0xbilxkh2y09lvbcs9lamk2jkjkhxhlhxknmnfgs";
rev = "3e4e44fd360dfe114e81e6332a5a058a4b287cb1";
repo = "2048-in-terminal";
owner = "alewmoose";
};
buildInputs = [ ncurses ];
enableParallelBuilding = true;
preInstall = ''
mkdir -p $out/bin
'';
installFlags = "DESTDIR=$(out)";
meta = with stdenv.lib; {
inherit version;
inherit (src.meta) homepage;
description = "Animated console version of the 2048 game";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}

View file

@ -13648,6 +13648,8 @@ let
### GAMES
"2048-in-terminal" = callPackage ../games/2048-in-terminal { };
airstrike = callPackage ../games/airstrike { };
alienarena = callPackage ../games/alienarena { };