nixpkgs/pkgs/development/ocaml-modules/dedukti/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
758 B
Nix
Raw Normal View History

2022-09-09 00:32:59 +00:00
{ lib
, fetchFromGitHub
, buildDunePackage
, cmdliner
2022-09-09 00:32:59 +00:00
, 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 ];
2022-09-09 00:32:59 +00:00
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 ];
};
}