about summary refs log tree commit diff
path: root/pkgs/development/scheme-modules/scheme-bytestructures
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-05 00:47:27 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-12-05 00:47:27 +0100
commit12bcee759da4967ea9a6db6bf16d6095495a35f3 (patch)
tree9abb71d20d46fc5a13e2e6ae73f763466624bb9f /pkgs/development/scheme-modules/scheme-bytestructures
parent1543cd24cc75c0cededadd7922ed52b7f71422f7 (diff)
downloadnixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.tar
nixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.tar.gz
nixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.tar.bz2
nixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.tar.lz
nixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.tar.xz
nixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.tar.zst
nixlib-12bcee759da4967ea9a6db6bf16d6095495a35f3.zip
scheme-bytestructures: don't strip on darwin
Diffstat (limited to 'pkgs/development/scheme-modules/scheme-bytestructures')
-rw-r--r--pkgs/development/scheme-modules/scheme-bytestructures/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/scheme-modules/scheme-bytestructures/default.nix b/pkgs/development/scheme-modules/scheme-bytestructures/default.nix
index 25412b45b40b..cfdb39e58616 100644
--- a/pkgs/development/scheme-modules/scheme-bytestructures/default.nix
+++ b/pkgs/development/scheme-modules/scheme-bytestructures/default.nix
@@ -28,6 +28,9 @@ stdenv.mkDerivation rec {
   doCheck = true;
   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
 
+  # In procedure bytevector-u8-ref: Argument 2 out of range
+  dontStrip = stdenv.isDarwin;
+
   meta = with lib; {
     description = "Structured access to bytevector contents";
     homepage = "https://github.com/TaylanUB/scheme-bytestructures";