2020-12-09 12:39:15 +00:00
|
|
|
{ buildDunePackage, alcotest, graphql_parser, rresult, yojson }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "graphql";
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
inherit (graphql_parser) version src;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [ graphql_parser rresult yojson ];
|
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [ alcotest ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = graphql_parser.meta // {
|
|
|
|
description = "Build GraphQL schemas and execute queries against them";
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|