aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/irmin/chunk.nix
blob: 7a2ad0ec7dfda46b9025ffa0a720e0ff4dfb2e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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";
  };

}