13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
18 lines
382 B
Nix
18 lines
382 B
Nix
{ buildDunePackage, alcotest, graphql_parser, rresult, yojson }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "graphql";
|
|
|
|
inherit (graphql_parser) version src;
|
|
|
|
propagatedBuildInputs = [ graphql_parser rresult yojson ];
|
|
|
|
checkInputs = [ alcotest ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = graphql_parser.meta // {
|
|
description = "Build GraphQL schemas and execute queries against them";
|
|
};
|
|
|
|
}
|