aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/mem.nix
blob: 1b8947849a922109d962da495d32301fd53cb1b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildDunePackage, irmin, irmin-test }:

buildDunePackage rec {

  pname = "irmin-mem";

  inherit (irmin) version src;

  useDune2 = true;

  propagatedBuildInputs = [ irmin ];

  checkInputs = lib.optional doCheck irmin-test;

  doCheck = true;

  meta = irmin.meta // {
    description = "Generic in-memory Irmin stores";
  };

}