From 3dfaa2a965f3ab82ab1f19c543c2917621c0014c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 28 Sep 2023 10:54:32 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.apron:=20don=E2=80=99t=20strip=20?= =?UTF-8?q?libraries=20on=20darwin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/antoinemine/apron/issues/93 --- pkgs/development/ocaml-modules/apron/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/ocaml-modules/apron/default.nix b/pkgs/development/ocaml-modules/apron/default.nix index edf5ae9a4f33..5ad98224962e 100644 --- a/pkgs/development/ocaml-modules/apron/default.nix +++ b/pkgs/development/ocaml-modules/apron/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { configurePhase = '' runHook preConfigure - ./configure -prefix $out + ./configure -prefix $out ${lib.optionalString stdenv.isDarwin "-no-strip"} mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs runHook postConfigure '';