depot/third_party/nixpkgs/pkgs/development/ocaml-modules/dedukti/default.nix
Default email 7bc014aa9c Project import generated by Copybara.
GitOrigin-RevId: c97e777ff06fcb8d37dcdf5e21e9eff1f34f0e90
2022-09-11 12:47:08 -03:00

33 lines
766 B
Nix

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