1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/games/tcl2048/default.nix
2014-08-31 12:02:04 +03:00

20 lines
505 B
Nix

{ stdenv, fetchurl, tcl, tcllib }:
stdenv.mkDerivation {
name = "tcl2048-0.2.5";
src = fetchurl {
url = https://raw.githubusercontent.com/dbohdan/2048-tcl/v0.2.5/2048.tcl;
sha256 = "b0d6e8a31dce8c1ca8dbbb8c513b50fbfb9cd6a313201941fa15531165bf68ce";
};
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;
};
}