about summary refs log tree commit diff
path: root/pkgs/development/tools/wasmedge
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-21 14:51:04 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-21 14:51:04 +0300
commitc705bcbafa5c21194c40c09214568bbddd7208d5 (patch)
treebb2378097efd7bb831c16ab22f14ea32710e3a10 /pkgs/development/tools/wasmedge
parentdf469dd8cd9451eaf082164cd4a83b60fd580b85 (diff)
wasmedge: fix build on x86_64-darwin
Diffstat (limited to 'pkgs/development/tools/wasmedge')
-rw-r--r--pkgs/development/tools/wasmedge/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/wasmedge/default.nix b/pkgs/development/tools/wasmedge/default.nix
index 0c0e22bf1c795..d0ad7cf8a9477 100644
--- a/pkgs/development/tools/wasmedge/default.nix
+++ b/pkgs/development/tools/wasmedge/default.nix
@@ -1,6 +1,6 @@
 { lib
 , fetchFromGitHub
-, llvmPackages
+, llvmPackages_12
 , boost
 , cmake
 , spdlog
@@ -11,6 +11,7 @@
 }:
 
 let
+  llvmPackages = llvmPackages_12;
   stdenv = llvmPackages.stdenv;
 in
 stdenv.mkDerivation (finalAttrs: {
@@ -61,7 +62,6 @@ stdenv.mkDerivation (finalAttrs: {
     license = with licenses; [ asl20 ];
     description = "A lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications";
     maintainers = with maintainers; [ dit7ya ];
-    # error: no member named 'utimensat' in the global namespace
-    broken = stdenv.isDarwin && stdenv.isx86_64;
+    platforms = platforms.all;
   };
 })