absolute: init at 0.3

This commit is contained in:
Vincent Laporte
2026-07-15 15:17:53 +02:00
parent 335ff4070b
commit 8e34063662
+18
View File
@@ -0,0 +1,18 @@
{ lib, ocamlPackages }:
let
inherit (ocamlPackages) buildDunePackage libabsolute;
in
buildDunePackage {
pname = "absolute";
inherit (libabsolute) src version;
__structuredAttrs = true;
buildInputs = [ libabsolute ];
meta = libabsolute.meta // {
description = "A constraint solver based on abstract domains from the theory of abstract interpretation";
};
}