Merge pull request #194804 from nagy/2048

_2048-in-terminal: unstable-2021-09-12 -> unstable-2022-06-13

authored by Bobby Rong and committed by GitHub 73ad1fda a07b8816

+5 -15
+5 -15
pkgs/games/2048-in-terminal/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, pkg-config }: 1 + { lib, stdenv, fetchFromGitHub, ncurses, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "2048-in-terminal"; 5 - version = "unstable-2021-09-12"; 5 + version = "unstable-2022-06-13"; 6 6 7 7 src = fetchFromGitHub { 8 - sha256 = "1jgacyimn59kxqhrk8jp13qayc2mncxhx393spqcxbz0sj6lxq9p"; 9 - rev = "466abe827638598e40cb627d2b017fe8f76b3a14"; 8 + owner = "alewmoose"; 10 9 repo = "2048-in-terminal"; 11 - owner = "alewmoose"; 10 + rev = "bf22f868a2e0e572f22153468585ec0226a4b8b2"; 11 + sha256 = "sha256-Y5ZQYWOiG3QZZsr+d7olUDGAQ1LhRG9X2hBNQDx+Ztw="; 12 12 }; 13 - 14 - # Fix pending upstream inclusion for ncurses-6.3 support: 15 - # https://github.com/alewmoose/2048-in-terminal/pull/6 16 - patches = [ 17 - (fetchpatch { 18 - name = "ncurses-6.3.patch"; 19 - url = "https://github.com/alewmoose/2048-in-terminal/commit/b1c78dc4b3cca3a193b1afea1ab85a75966823cf.patch"; 20 - sha256 = "05ibpgr83r7zxsak2l0gaf33858bp0sp0mjfdpmcmw745z3jw7q1"; 21 - }) 22 - ]; 23 13 24 14 buildInputs = [ ncurses ]; 25 15 nativeBuildInputs = [ pkg-config ];