Merge pull request #166365 from siraben/2048-expand-darwin

This commit is contained in:
Ben Siraphob 2022-03-29 23:52:05 -05:00 committed by GitHub
commit 26fecc802f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "2048-in-terminal";
version = "2021-09-12";
version = "unstable-2021-09-12";
src = fetchFromGitHub {
sha256 = "1jgacyimn59kxqhrk8jp13qayc2mncxhx393spqcxbz0sj6lxq9p";
@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
inherit (src.meta) homepage;
description = "Animated console version of the 2048 game";
license = licenses.mit;
platforms = platforms.linux;
platforms = platforms.unix;
};
}