mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
af34e3be8c
ocamlPackages.alcotest: 1.5.0 → 1.6.0 ocamlPackages.crowbar: 0.2 → 0.2.1 ocamlPackages.dune-release: 1.5.1 → 1.6.2 ocamlPackages.functoria: 3.1.1 → 4.2.0 ocamlPackages.mirage: 3.10.7 → 4.2.0 ocamlPackages.irmin-pack: disable checks ocamlPackages.mdx: disable checks ocamlPackages.git-unix: mark as broken
34 lines
758 B
Nix
34 lines
758 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, buildDunePackage
|
|
, cmdliner
|
|
, 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 ];
|
|
|
|
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 ];
|
|
};
|
|
}
|