3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/tcl2048/default.nix

20 lines
505 B
Nix
Raw Normal View History

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