From a6a37c22b318ed773b2918a3cb6ce8a1e77254c4 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 7 Jun 2024 21:20:30 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.apron:=200.9.14=20=E2=86=92=200.9?= =?UTF-8?q?.15?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/apron/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/apron/default.nix b/pkgs/development/ocaml-modules/apron/default.nix index 5ad98224962e..9450dd527cb8 100644 --- a/pkgs/development/ocaml-modules/apron/default.nix +++ b/pkgs/development/ocaml-modules/apron/default.nix @@ -4,26 +4,23 @@ stdenv.mkDerivation rec { pname = "ocaml${ocaml.version}-apron"; - version = "0.9.14"; + version = "0.9.15"; src = fetchFromGitHub { owner = "antoinemine"; repo = "apron"; rev = "v${version}"; - hash = "sha256-e8bSf0FPB6E3MFHHoSrE0x/6nrUStO+gOKxJ4LDHBi0="; + hash = "sha256-gHLCurydxX1pS66DTAWUJGl9Yqu9RWRjkZh6lXzM7YY="; }; nativeBuildInputs = [ ocaml findlib perl ]; buildInputs = [ gmp mpfr ppl camlidl flint pplite ]; propagatedBuildInputs = [ mlgmpidl ]; - # TODO: Doesn't produce the library correctly if true - strictDeps = false; - outputs = [ "out" "dev" ]; configurePhase = '' runHook preConfigure - ./configure -prefix $out ${lib.optionalString stdenv.isDarwin "-no-strip"} + ./configure -prefix $out mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib/stublibs runHook postConfigure '';