depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/chunk.nix

33 lines
411 B
Nix

{
buildDunePackage,
irmin,
irmin-test,
fmt,
logs,
lwt,
alcotest,
}:
buildDunePackage rec {
pname = "irmin-chunk";
inherit (irmin) version src;
propagatedBuildInputs = [
irmin
fmt
logs
lwt
];
doCheck = true;
checkInputs = [
alcotest
irmin-test
];
meta = irmin.meta // {
description = "Irmin backend which allow to store values into chunks";
};
}