nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 alcotest,
4 graphql,
5 lwt,
6}:
7
8buildDunePackage {
9 pname = "graphql-lwt";
10
11 inherit (graphql) version src;
12
13 propagatedBuildInputs = [
14 graphql
15 lwt
16 ];
17
18 checkInputs = [ alcotest ];
19
20 doCheck = true;
21
22 meta = graphql.meta // {
23 description = "Build GraphQL schemas with Lwt support";
24 };
25
26}