ocamlPackages.vpl-core: init at 0.5
This commit is contained in:
parent
18aafa59ad
commit
a6fe31a6dc
2 changed files with 33 additions and 0 deletions
31
pkgs/development/ocaml-modules/vpl-core/default.nix
Normal file
31
pkgs/development/ocaml-modules/vpl-core/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue