nixpkgs/pkgs/games/tcl2048/default.nix

20 lines
504 B
Nix
Raw Normal View History

2014-08-31 08:48:51 +00:00
{ stdenv, fetchurl, tcl, tcllib }:
stdenv.mkDerivation {
2014-08-31 09:32:14 +00:00
name = "tcl2048-0.2.6";
2014-08-31 08:48:51 +00:00
src = fetchurl {
2014-08-31 09:32:14 +00:00
url = https://raw.githubusercontent.com/dbohdan/2048-tcl/v0.2.6/2048.tcl;
2014-08-31 09:40:05 +00:00
sha256 = "481eac7cccc37d1122c3069da6186f584906bd27b86b8d4ae1a2d7e355c1b6b2";
2014-08-31 08:48:51 +00:00
};
builder = ./builder.sh;
meta = {
homepage = https://github.com/dbohdan/2048-tcl;
2014-11-11 13:20:43 +00:00
description = "The game of 2048 implemented in Tcl";
2014-08-31 08:48:51 +00:00
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.all;
};
}