Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildDunePackage, irmin-mirage, irmin-graphql
2, mirage-clock, cohttp-lwt, lwt, uri, git
3}:
4
5buildDunePackage {
6 pname = "irmin-mirage-graphql";
7
8 inherit (irmin-mirage) version src strictDeps;
9 duneVersion = "3";
10
11 propagatedBuildInputs = [
12 irmin-mirage
13 irmin-graphql
14 mirage-clock
15 cohttp-lwt
16 lwt
17 uri
18 git
19 ];
20
21 inherit (irmin-mirage) meta;
22}