summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2022-03-29 23:52:05 -0500
committerGitHub <noreply@github.com>2022-03-29 23:52:05 -0500
commit26fecc802f687b5a55556d55f9c1f4adf41e81f9 (patch)
tree2f40a8a7fa05ed860ec3ec15c6e5be41dc8fa434 /pkgs
parenta9286c66135309916be0bd74dada4c5171e1c689 (diff)
parentc9e8b42ecae56c88f5b12ad8c8e95e588278eff6 (diff)
downloadnixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.tar
nixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.tar.gz
nixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.tar.bz2
nixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.tar.lz
nixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.tar.xz
nixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.tar.zst
nixpkgs-26fecc802f687b5a55556d55f9c1f4adf41e81f9.zip
Merge pull request #166365 from siraben/2048-expand-darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/2048-in-terminal/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/2048-in-terminal/default.nix b/pkgs/games/2048-in-terminal/default.nix
index 8f527534bb4..59012227aed 100644
--- a/pkgs/games/2048-in-terminal/default.nix
+++ b/pkgs/games/2048-in-terminal/default.nix
@@ -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;
   };
 }