ocamlPackages.irmin-chunk: init at 2.2.0
This commit is contained in:
parent
7b8785b65d
commit
9b2ddc9ad0
18
pkgs/development/ocaml-modules/irmin/chunk.nix
Normal file
18
pkgs/development/ocaml-modules/irmin/chunk.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{ lib, buildDunePackage, irmin, irmin-mem, irmin-test }:
|
||||
|
||||
buildDunePackage rec {
|
||||
|
||||
pname = "irmin-chunk";
|
||||
inherit (irmin) version src useDune2;
|
||||
|
||||
propagatedBuildInputs = [ irmin ];
|
||||
|
||||
doCheck = true;
|
||||
checkInputs = [ irmin-mem irmin-test ];
|
||||
|
||||
meta = irmin.meta // {
|
||||
description = "Irmin backend which allow to store values into chunks";
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -429,6 +429,8 @@ let
|
||||
|
||||
irmin = callPackage ../development/ocaml-modules/irmin { };
|
||||
|
||||
irmin-chunk = callPackage ../development/ocaml-modules/irmin/chunk.nix { };
|
||||
|
||||
irmin-fs = callPackage ../development/ocaml-modules/irmin/fs.nix { };
|
||||
|
||||
irmin-git = callPackage ../development/ocaml-modules/irmin/git.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user