From 8078c3b221a5cca11f4ac5c7ec620fdbf0937015 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 17 Jun 2024 13:08:51 +0200 Subject: ocamlPackages.apron: don’t strip libraries on darwin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 6681cac8f1505f9c7d4d42fecd052f954fe4831c) --- 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 9450dd527cb8b..fb93fd2f18753 100644 --- a/pkgs/development/ocaml-modules/apron/default.nix +++ b/pkgs/development/ocaml-modules/apron/default.nix @@ -20,7 +20,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 ''; -- cgit 1.4.1