ocamlPackages.vpl-core: init at 0.5

This commit is contained in:
Vincent Laporte 2024-02-29 07:22:40 +01:00 committed by Vincent Laporte
parent 18aafa59ad
commit a6fe31a6dc
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib
, fetchFromGitHub
, buildDunePackage
, zarith
}:
buildDunePackage rec {
pname = "vpl-core";
version = "0.5";
minimalOCamlVersion = "4.07";
src = fetchFromGitHub {
owner = "VERIMAG-Polyhedra";
repo = "vpl";
rev = version;
hash = "sha256-mSD/xSweeK9WMxWDdX/vzN96iXo74RkufjuNvtzsP9o=";
};
propagatedBuildInputs = [
zarith
];
meta = {
description = "Verified Polyhedra Library";
homepage = "https://amarechal.gitlab.io/home/projects/vpl/";
license = lib.licenses.lgpl3Only;
maintainers = [ lib.maintainers.vbgl ];
};
}

View File

@ -1871,6 +1871,8 @@ let
vorbis = callPackage ../development/ocaml-modules/vorbis { };
vpl-core = callPackage ../development/ocaml-modules/vpl-core { };
### W ###
wasm = callPackage ../development/ocaml-modules/wasm { };