about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/mirage-git.nix
blob: 09c1820d6094dc7486c69e5b4e5607df56d27652 (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
27
{ buildDunePackage, irmin-mirage, irmin-git
, mirage-kv, cohttp, conduit-lwt, conduit-mirage
, git-paf, fmt, git, lwt, mirage-clock, uri
}:

buildDunePackage {
  pname = "irmin-mirage-git";

  inherit (irmin-mirage) version src strictDeps;

  propagatedBuildInputs = [
    irmin-mirage
    irmin-git
    mirage-kv
    cohttp
    conduit-lwt
    conduit-mirage
    git-paf
    fmt
    git
    lwt
    mirage-clock
    uri
  ];

  inherit (irmin-mirage) meta;
}