summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2022-03-17 16:31:47 +0000
committerJohn Ericson <John.Ericson@Obsidian.Systems>2022-04-14 17:06:34 +0000
commit942f536c766f883694eccb50a9f1660e90a0da62 (patch)
treef9c91f5fd961078d374a2b2d21d2609b8e0e06c6 /pkgs/development/libraries
parent164e44e62faf175771a3ea905876945529259ee6 (diff)
downloadnixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.tar
nixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.tar.gz
nixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.tar.bz2
nixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.tar.lz
nixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.tar.xz
nixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.tar.zst
nixpkgs-942f536c766f883694eccb50a9f1660e90a0da62.zip
wasilibc: unstable-2021-09-23 -> unstable-2022-04-12
Done in response to a few PRs which I made to wasi-libc to make things
better for downstream packagers like us.
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/wasilibc/default.nix33
1 files changed, 19 insertions, 14 deletions
diff --git a/pkgs/development/libraries/wasilibc/default.nix b/pkgs/development/libraries/wasilibc/default.nix
index e8436f9e956..9448041c5e7 100644
--- a/pkgs/development/libraries/wasilibc/default.nix
+++ b/pkgs/development/libraries/wasilibc/default.nix
@@ -2,16 +2,18 @@
 
 stdenv.mkDerivation {
   pname = "wasilibc";
-  version = "unstable-2021-09-23";
+  version = "unstable-2022-04-12";
 
   src = buildPackages.fetchFromGitHub {
     owner = "WebAssembly";
     repo = "wasi-libc";
-    rev = "ad5133410f66b93a2381db5b542aad5e0964db96";
-    hash = "sha256-RiIClVXrb18jF9qCt+5iALHPCZKYcnad7JsILHBV0pA=";
+    rev = "a279514a6ef30cd8ee1469345b33172fcbc8d52d";
+    sha256 = "0a9ldas8p7jg7jlkhb9wdiw141z7vfz6p18mnmxnnnna7bp1y3fz";
     fetchSubmodules = true;
   };
 
+  outputs = [ "out" "dev" "share" ];
+
   # clang-13: error: argument unused during compilation: '-rtlib=compiler-rt' [-Werror,-Wunused-command-line-argument]
   postPatch = ''
     substituteInPlace Makefile \
@@ -19,21 +21,24 @@ stdenv.mkDerivation {
   '';
 
   preBuild = ''
-    export NIX_CFLAGS_COMPILE="-I$(pwd)/sysroot/include $NIX_CFLAGS_COMPILE"
+    export SYSROOT_LIB=${builtins.placeholder "out"}/lib
+    export SYSROOT_INC=${builtins.placeholder "dev"}/include
+    export SYSROOT_SHARE=${builtins.placeholder "share"}/share
+    mkdir -p "$SYSROOT_LIB" "$SYSROOT_INC" "$SYSROOT_SHARE"
+    makeFlagsArray+=(
+      "SYSROOT_LIB:=$SYSROOT_LIB"
+      "SYSROOT_INC:=$SYSROOT_INC"
+      "SYSROOT_SHARE:=$SYSROOT_SHARE"
+    )
   '';
 
-  makeFlags = [
-    "WASM_CC=${stdenv.cc.targetPrefix}cc"
-    "WASM_NM=${stdenv.cc.targetPrefix}nm"
-    "WASM_AR=${stdenv.cc.targetPrefix}ar"
-    "INSTALL_DIR=${placeholder "out"}"
-  ];
-
   enableParallelBuilding = true;
 
-  postInstall = ''
-    mv $out/lib/*/* $out/lib
-    ln -s $out/share/wasm32-wasi/undefined-symbols.txt $out/lib/wasi.imports
+  # We just build right into the install paths, per the `preBuild`.
+  dontInstall = true;
+
+  preFixup = ''
+    ln -s $share/share/undefined-symbols.txt $out/lib/wasi.imports
   '';
 
   meta = with lib; {