mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-20 07:31:19 +00:00
ocamlPackages.libabsolute: init at 0.3
This commit is contained in:
32
pkgs/development/ocaml-modules/libabsolute/default.nix
Normal file
32
pkgs/development/ocaml-modules/libabsolute/default.nix
Normal 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";
|
||||
};
|
||||
})
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user