summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-04-02 12:47:47 +0100
committerGitHub <noreply@github.com>2021-04-02 12:47:47 +0100
commit980bbc237aed11a83b631986e0a15b7e94c55484 (patch)
tree8c452b32ca053eab02faafca566a3446d0e82145
parent166520812e9127532a64ed1707f2a978d2edcd9b (diff)
parent119b2d63f175c4bce718febe1b51ea20cf8aaa18 (diff)
downloadnixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.tar
nixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.tar.gz
nixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.tar.bz2
nixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.tar.lz
nixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.tar.xz
nixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.tar.zst
nixpkgs-980bbc237aed11a83b631986e0a15b7e94c55484.zip
Merge pull request #118302 from siriobalmelli-foss/fix/python3Packages.wasmer
python3Packages.wasmer: build on Darwin
-rw-r--r--pkgs/development/python-modules/wasmer/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wasmer/default.nix b/pkgs/development/python-modules/wasmer/default.nix
index 28c9b8b5c16..373e7a0a220 100644
--- a/pkgs/development/python-modules/wasmer/default.nix
+++ b/pkgs/development/python-modules/wasmer/default.nix
@@ -36,7 +36,7 @@ in buildPythonPackage rec {
     description = "Python extension to run WebAssembly binaries";
     homepage = "https://github.com/wasmerio/wasmer-python";
     license = licenses.mit;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
     maintainers = with maintainers; [ SuperSandro2000 ];
   };
 }