ocamlPackages.apronext: init at 1.0.4

(cherry picked from commit 5637900bd8)
This commit is contained in:
Vincent Laporte
2026-07-15 08:25:36 +02:00
committed by github-actions[bot]
parent 97c430d0b1
commit 4b95f7aeac
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
apron,
}:
buildDunePackage (finalAttrs: {
pname = "apronext";
version = "1.0.4";
src = fetchFromGitHub {
owner = "ghilesZ";
repo = "apronext";
rev = "39610de5930e12c8d0156ed2d55fedc220f1e77d";
hash = "sha256-K19hmvyI1RJlKv24VJustDfkGTdrW4PcR8xif/y/giQ=";
};
propagatedBuildInputs = [ apron ];
meta = {
license = lib.licenses.asl20;
homepage = "https://github.com/ghilesZ/apronext";
description = "Extension for the OCaml interface of the apron library";
};
})

View File

@@ -56,6 +56,8 @@ let
apron = callPackage ../development/ocaml-modules/apron { };
apronext = callPackage ../development/ocaml-modules/apronext { };
argon2 = callPackage ../development/ocaml-modules/argon2 { };
arg-complete = callPackage ../development/ocaml-modules/arg-complete { };