ocamlPackages.libabsolute: init at 0.3

This commit is contained in:
Vincent Laporte
2026-07-15 08:25:43 +02:00
parent ef4335d401
commit 335ff4070b
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
{
lib,
fetchFromGitHub,
buildDunePackage,
menhir,
apronext,
picasso,
}:
buildDunePackage (finalAttrs: {
pname = "libabsolute";
version = "0.3";
src = fetchFromGitHub {
owner = "mpelleau";
repo = "absolute";
tag = finalAttrs.version;
hash = "sha256-q2QxqZJn71MODJ1+Yf9m33qu8xERTqExMANqgk7aksQ=";
};
nativeBuildInputs = [ menhir ];
propagatedBuildInputs = [
apronext
picasso
];
meta = {
license = lib.licenses.lgpl3Plus;
homepage = "https://github.com/mpelleau/AbSolute";
description = "A constraint programming library based on abstract domains";
};
})

View File

@@ -1127,6 +1127,8 @@ let
letters = callPackage ../development/ocaml-modules/letters { };
libabsolute = callPackage ../development/ocaml-modules/libabsolute { };
libc = callPackage ../development/ocaml-modules/libc { };
lilv = callPackage ../development/ocaml-modules/lilv {