ocamlPackages.irmin-pack: init at 2.0.0

This commit is contained in:
Vincent Laporte 2019-12-09 10:29:31 +00:00
parent 186e55f746
commit ad95ea7223
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, alcotest-lwt, index, irmin, irmin-test }:
buildDunePackage rec {
pname = "irmin-pack";
inherit (irmin) version src;
propagatedBuildInputs = [ index irmin ];
checkInputs = lib.optionals doCheck [ alcotest-lwt irmin-test ];
doCheck = true;
meta = irmin.meta // {
description = "Irmin backend which stores values in a pack file";
};
}

View File

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