Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
407 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
irmin,
irmin-test,
fmt,
logs,
lwt,
alcotest,
}:
buildDunePackage {
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";
};
}