ocamlPackages.irmin*: 2.1.0 → 2.2.0

source now inherit ppx_irmin instead of irmin, since we can test irmin
using ppx_irmin and this way we avoid circular dependencies.
This commit is contained in:
sternenseemann
2020-06-30 17:18:33 +02:00
committed by Vincent Laporte
parent 1c04554e4b
commit e3936ac9c1
7 changed files with 34 additions and 21 deletions
+17 -4
View File
@@ -1,16 +1,29 @@
{ lib, buildDunePackage, ppxlib, ocaml-syntax-shims, irmin }:
{ lib, fetchurl, buildDunePackage, ppxlib, ocaml-syntax-shims }:
buildDunePackage {
buildDunePackage rec {
pname = "ppx_irmin";
version = "2.2.0";
inherit (irmin) version src minimumOCamlVersion;
src = fetchurl {
url = "https://github.com/mirage/irmin/releases/download/${version}/irmin-${version}.tbz";
sha256 = "0gzw918b661qkvd140hilww9jsc49rxsxz1k4iihyvikjn202km4";
};
minimumOCamlVersion = "4.06";
useDune2 = true;
buildInputs = [ ocaml-syntax-shims ];
propagatedBuildInputs = [ ppxlib ];
meta = irmin.meta // {
# tests depend on irmin, would create mutual dependency
# opt to test irmin instead of ppx_irmin
doCheck = false;
meta = {
homepage = "https://irmin.org/";
description = "PPX deriver for Irmin generics";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}