about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/mirage-graphql.nix
blob: 75d3c567a04d95e477693525d4402f84aa1e96a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ buildDunePackage, irmin-mirage, irmin-graphql
, mirage-clock, cohttp-lwt, lwt, uri, git
}:

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

  inherit (irmin-mirage) version src strictDeps;
  duneVersion = "3";

  propagatedBuildInputs = [
    irmin-mirage
    irmin-graphql
    mirage-clock
    cohttp-lwt
    lwt
    uri
    git
  ];

  inherit (irmin-mirage) meta;
}