lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.05-pre 18 lines 382 B view raw
1{ buildDunePackage, alcotest, graphql_parser, rresult, yojson }: 2 3buildDunePackage rec { 4 pname = "graphql"; 5 6 inherit (graphql_parser) version src; 7 8 propagatedBuildInputs = [ graphql_parser rresult yojson ]; 9 10 checkInputs = [ alcotest ]; 11 12 doCheck = true; 13 14 meta = graphql_parser.meta // { 15 description = "Build GraphQL schemas and execute queries against them"; 16 }; 17 18}