diff options
| author | Auguste Baum <auguste.apple@gmail.com> | 2023-11-25 18:25:36 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-26 09:19:15 +0000 |
| commit | 2fec28b38940521e84ecb7b6dc0bf22b6621b389 (patch) | |
| tree | 285359363c17f648760f9e191035d6755a57279a | |
| parent | Merge pull request #269986 from NixOS/backport-269416-to-release-23.11 (diff) | |
| download | nixpkgs-origin/backport-269948-to-release-23.11.tar.gz | |
python3Packages.wasmer-compiler-llvm: fix build failureorigin/backport-269948-to-release-23.11
(cherry picked from commit c4cd72586f1ac64fc9aafdd06178e4e6218d2eda)
| -rw-r--r-- | pkgs/development/python-modules/wasmer/default.nix | 3 |
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 ]; }; |
