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
This commit is contained in:
Cyril Cohen
2020-06-04 10:25:19 +02:00
committed by GitHub
parent 2d2f04b6a4
commit cc1f954bc4
3 changed files with 15 additions and 21 deletions

View File

@@ -1,17 +1,15 @@
{ lib, fetchFromGitHub, buildDunePackage, camlp5
{ lib, fetchzip, buildDunePackage, camlp5
, ppx_tools_versioned, ppx_deriving, re
}:
buildDunePackage rec {
pname = "elpi";
version = "1.10.2";
version = "1.11.2";
src = fetchFromGitHub {
owner = "LPCIC";
repo = "elpi";
rev = "v${version}";
sha256 = "0w5z0pxyshqawq7w5rw3nqii49y88rizvwqf202pl11xqi14icsn";
};
src = fetchzip {
url = "https://github.com/LPCIC/elpi/releases/download/v${version}/elpi-v${version}.tbz";
sha256 = "15hamy9ifr05kczadwh3yj2gmr12a9z1jwppmp5yrns0vykjbj76";
};
minimumOCamlVersion = "4.04";
@@ -23,6 +21,8 @@ buildDunePackage rec {
description = "Embeddable λProlog Interpreter";
license = lib.licenses.lgpl21Plus;
maintainers = [ lib.maintainers.vbgl ];
inherit (src.meta) homepage;
homepage = "https://github.com/LPCIC/elpi";
};
useDune2 = true;
}