ocamlPackages.dedukti: init at 2.7
This commit is contained in:
parent
4f742d4535
commit
b361e1895f
2 changed files with 35 additions and 0 deletions
33
pkgs/development/ocaml-modules/dedukti/default.nix
Normal file
33
pkgs/development/ocaml-modules/dedukti/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildDunePackage
|
||||
, cmdliner_1_1
|
||||
, menhir
|
||||
}:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "dedukti";
|
||||
version = "2.7";
|
||||
|
||||
minimalOCamlVersion = "4.08";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Deducteam";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-SFxbgq2znO+OCEFzuekVquvtOEuCQanseKy+iZAeWbc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ menhir ];
|
||||
buildInputs = [ cmdliner_1_1 ];
|
||||
|
||||
doCheck = false; # requires `tezt`
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://deducteam.github.io";
|
||||
description = "Logical framework based on the λΠ-calculus modulo rewriting";
|
||||
license = licenses.cecill-b;
|
||||
changelog = "https://github.com/Deducteam/Dedukti/raw/${version}/CHANGELOG.md";
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
|
@ -288,6 +288,8 @@ let
|
|||
|
||||
decompress = callPackage ../development/ocaml-modules/decompress { };
|
||||
|
||||
dedukti = callPackage ../development/ocaml-modules/dedukti { };
|
||||
|
||||
diet = callPackage ../development/ocaml-modules/diet { };
|
||||
|
||||
digestif = callPackage ../development/ocaml-modules/digestif { };
|
||||
|
|
Loading…
Reference in a new issue