ocamlPackages.irmin-pack: init at 2.0.0
This commit is contained in:
19
pkgs/development/ocaml-modules/irmin/pack.nix
Normal file
19
pkgs/development/ocaml-modules/irmin/pack.nix
Normal 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";
|
||||
};
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user