nixpkgs/pkgs/development/ocaml-modules/elpi/default.nix
Cyril Cohen cc1f954bc4
ocamlPackages.elpi: 1.10.2 -> 1.11.0
coqPackages.coq-elpi: 1.3.1 -> 1.4.0
coqPackages.hierarchy-builder: 0.9.0 -> 0.9.1
2020-06-04 10:25:19 +02:00

29 lines
694 B
Nix

{ lib, fetchzip, buildDunePackage, camlp5
, ppx_tools_versioned, ppx_deriving, re
}:
buildDunePackage rec {
pname = "elpi";
version = "1.11.2";
src = fetchzip {
url = "https://github.com/LPCIC/elpi/releases/download/v${version}/elpi-v${version}.tbz";
sha256 = "15hamy9ifr05kczadwh3yj2gmr12a9z1jwppmp5yrns0vykjbj76";
};
minimumOCamlVersion = "4.04";
buildInputs = [ ppx_tools_versioned ];
propagatedBuildInputs = [ camlp5 ppx_deriving re ];
meta = {
description = "Embeddable λProlog Interpreter";
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.vbgl ];
homepage = "https://github.com/LPCIC/elpi";
};
useDune2 = true;
}