ocamlPackages.irmin-mem: init at 2.0.0

This commit is contained in:
Vincent Laporte 2019-12-09 10:29:09 +00:00
parent a21d658051
commit 5bbc1c1159
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ lib, buildDunePackage, irmin, irmin-test }:
buildDunePackage rec {
pname = "irmin-mem";
inherit (irmin) version src;
propagatedBuildInputs = [ irmin ];
checkInputs = lib.optional doCheck irmin-test;
doCheck = true;
meta = irmin.meta // {
description = "Generic in-memory Irmin stores";
};
}

View file

@ -372,6 +372,8 @@ let
irmin = callPackage ../development/ocaml-modules/irmin { };
irmin-mem = callPackage ../development/ocaml-modules/irmin/mem.nix { };
irmin-test = callPackage ../development/ocaml-modules/irmin/test.nix { };
jingoo = callPackage ../development/ocaml-modules/jingoo {