depot/pkgs/development/ocaml-modules/vpl-core/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

31 lines
581 B
Nix

{ 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 ];
};
}