nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 irmin-mirage,
4 irmin-graphql,
5 mirage-clock,
6 cohttp-lwt,
7 lwt,
8 uri,
9 git,
10}:
11
12buildDunePackage {
13 pname = "irmin-mirage-graphql";
14
15 inherit (irmin-mirage) version src;
16
17 propagatedBuildInputs = [
18 irmin-mirage
19 irmin-graphql
20 mirage-clock
21 cohttp-lwt
22 lwt
23 uri
24 git
25 ];
26
27 inherit (irmin-mirage) meta;
28}