summary refs log tree commit diff
path: root/pkgs/games/tcl2048
diff options
context:
space:
mode:
authordbohdan <dbohdan@dbohdan.com>2018-05-15 22:50:45 +0300
committerdbohdan <dbohdan@dbohdan.com>2018-05-15 22:50:45 +0300
commit1d1407a6f4708455a1e85854e4e473796bf1f1f7 (patch)
treeb92928a50e0f6243d6ff216828aa0fe4044ba3c0 /pkgs/games/tcl2048
parent2a3399b3c8f8e6731262737fc610dedad36a901a (diff)
downloadnixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.tar
nixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.tar.gz
nixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.tar.bz2
nixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.tar.lz
nixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.tar.xz
nixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.tar.zst
nixpkgs-1d1407a6f4708455a1e85854e4e473796bf1f1f7.zip
tcl2048: 0.3.1 -> 0.4.0
Diffstat (limited to 'pkgs/games/tcl2048')
-rw-r--r--pkgs/games/tcl2048/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/tcl2048/default.nix b/pkgs/games/tcl2048/default.nix
index d1517a2ec61..48fa0a3b518 100644
--- a/pkgs/games/tcl2048/default.nix
+++ b/pkgs/games/tcl2048/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, tcl, tcllib }:
 
 stdenv.mkDerivation {
-  name = "tcl2048-0.3.1";
+  name = "tcl2048-0.4.0";
 
   src = fetchurl {
-    url = https://raw.githubusercontent.com/dbohdan/2048-tcl/v0.3.1/2048.tcl;
-    sha256 = "44e325328784c4e91cecc0a9cc00e32d733da713adf2fad1c081542f38af3361";
+    url = https://raw.githubusercontent.com/dbohdan/2048.tcl/v0.4.0/2048.tcl;
+    sha256 = "53f5503efd7f029b2614b0f9b1e3aac6c0342735a3c9b811d74a5135fee3e89e";
   };
 
   phases = "installPhase";
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
   '';
 
   meta = {
-    homepage = https://github.com/dbohdan/2048-tcl;
+    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;