summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/unix.nix
blob: 5793678bfcfda5bbdb51566b42f415ee083d30e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildDunePackage
, checkseum, cmdliner, git-unix, yaml
, irmin, irmin-fs, irmin-git, irmin-graphql, irmin-http, irmin-mem, irmin-pack, irmin-watcher
, irmin-test
}:

buildDunePackage rec {

  pname = "irmin-unix";

  inherit (irmin) version src;

  propagatedBuildInputs = [ checkseum cmdliner git-unix yaml
    irmin irmin-fs irmin-git irmin-graphql irmin-http irmin-mem irmin-pack irmin-watcher
  ];

  checkInputs = lib.optional doCheck irmin-test;

  doCheck = true;

  meta = irmin.meta // {
    description = "Unix backends for Irmin";
  };

}