summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-28 10:06:28 -0500
committerGitHub <noreply@github.com>2023-11-28 10:06:28 -0500
commitf7ff0bd2d81168e0c9d2b733363cc6260dd00f43 (patch)
tree0a8148e8aebc7806532f1b851e8195277616089a
parentMerge pull request #270030 from NixOS/backport-269899-to-release-23.11 (diff)
parentpython3Packages.wasmer-compiler-llvm: fix build failure (diff)
downloadnixpkgs-f7ff0bd2d81168e0c9d2b733363cc6260dd00f43.tar.gz
Merge pull request #270080 from NixOS/backport-269948-to-release-23.11
[Backport release-23.11] python3Packages.wasmer-compiler-llvm: fix build failure
-rw-r--r--pkgs/development/python-modules/wasmer/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/wasmer/default.nix b/pkgs/development/python-modules/wasmer/default.nix
index 7ac1626c3b6f..947022eab4f6 100644
--- a/pkgs/development/python-modules/wasmer/default.nix
+++ b/pkgs/development/python-modules/wasmer/default.nix
@@ -8,6 +8,7 @@
, libiconv
, libffi
, libxml2
+, llvm_14
, ncurses
, zlib
}:
@@ -93,7 +94,7 @@ in
pname = "wasmer-compiler-llvm";
buildAndTestSubdir = "packages/compiler-llvm";
cargoHash = "sha256-xawbf5gXXV+7I2F2fDSaMvjtFvGDBtqX7wL3c28TSbA=";
- extraNativeBuildInputs = [ rustc.llvm ];
+ extraNativeBuildInputs = [ llvm_14 ];
extraBuildInputs = [ libffi libxml2.out ncurses zlib ];
};