Merge pull request #40567 from dbohdan/master

tcl2048: 0.3.1 -> 0.4.0

authored by xeji and committed by GitHub 5f00237e 247a501e

+6 -6
+2 -2
maintainers/maintainer-list.nix
··· 989 989 name = "Davor Babic"; 990 990 }; 991 991 dbohdan = { 992 - email = "danyil.bohdan@gmail.com"; 992 + email = "dbohdan@dbohdan.com"; 993 993 github = "dbohdan"; 994 - name = "Danyil Bohdan"; 994 + name = "D. Bohdan"; 995 995 }; 996 996 dbrock = { 997 997 email = "daniel@brockman.se";
+4 -4
pkgs/games/tcl2048/default.nix
··· 1 1 { stdenv, fetchurl, tcl, tcllib }: 2 2 3 3 stdenv.mkDerivation { 4 - name = "tcl2048-0.3.1"; 4 + name = "tcl2048-0.4.0"; 5 5 6 6 src = fetchurl { 7 - url = https://raw.githubusercontent.com/dbohdan/2048-tcl/v0.3.1/2048.tcl; 8 - sha256 = "44e325328784c4e91cecc0a9cc00e32d733da713adf2fad1c081542f38af3361"; 7 + url = https://raw.githubusercontent.com/dbohdan/2048.tcl/v0.4.0/2048.tcl; 8 + sha256 = "53f5503efd7f029b2614b0f9b1e3aac6c0342735a3c9b811d74a5135fee3e89e"; 9 9 }; 10 10 11 11 phases = "installPhase"; ··· 25 25 ''; 26 26 27 27 meta = { 28 - homepage = https://github.com/dbohdan/2048-tcl; 28 + homepage = https://github.com/dbohdan/2048.tcl; 29 29 description = "The game of 2048 implemented in Tcl"; 30 30 license = stdenv.lib.licenses.mit; 31 31 platforms = stdenv.lib.platforms.all;