about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2023-01-06 14:16:22 +0000
committerThiago Kenji Okada <thiagokokada@gmail.com>2023-01-07 21:11:49 +0000
commit4645ec9de69d63200588c4a11cc399edcac33730 (patch)
tree7ebe21dace598234ebaef20b7223ade38d93c778 /pkgs
parent40db51d5631c28bf8ea7dc44505333b848e860d2 (diff)
pypy{27,38,39}: remove i686-linux, add aarch64-darwin
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/python/pypy/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/python/pypy/default.nix b/pkgs/development/interpreters/python/pypy/default.nix
index 0c3b73e9fd5b7..3004ebc1f7512 100644
--- a/pkgs/development/interpreters/python/pypy/default.nix
+++ b/pkgs/development/interpreters/python/pypy/default.nix
@@ -173,7 +173,7 @@ in with passthru; stdenv.mkDerivation rec {
     homepage = "http://pypy.org/";
     description = "Fast, compliant alternative implementation of the Python language (${pythonVersion})";
     license = licenses.mit;
-    platforms = [ "aarch64-linux" "i686-linux" "x86_64-linux" "x86_64-darwin" ];
+    platforms = [ "aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin" ];
     maintainers = with maintainers; [ andersk ];
   };
 }