diff options
| author | Vincent Laporte <Vincent.Laporte@gmail.com> | 2024-06-07 21:20:30 +0200 |
|---|---|---|
| committer | Vincent Laporte <vbgl@users.noreply.github.com> | 2024-06-14 09:00:07 +0200 |
| commit | 21f7bc3038e09f46e24149dabb06813ad3014b78 (patch) | |
| tree | 372938050f5f7cff7a21c9a76e4d45969177ef45 | |
| parent | Merge pull request #319672 from NixOS/backport-319416-to-release-24.05 (diff) | |
| download | nixpkgs-21f7bc3038e09f46e24149dabb06813ad3014b78.tar.gz | |
ocamlPackages.apron: 0.9.14 → 0.9.15
(cherry picked from commit eeb07de1e51c225ec652fc9b861ebaa8cd5ad819)
| -rw-r--r-- | pkgs/development/ocaml-modules/apron/default.nix | 9 |
1 files 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 ''; |
