Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
425 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
buildDunePackage,
alcotest,
graphql_parser,
rresult,
yojson,
}:
buildDunePackage {
pname = "graphql";
inherit (graphql_parser) version src;
duneVersion = "3";
propagatedBuildInputs = [
graphql_parser
rresult
yojson
];
checkInputs = [ alcotest ];
doCheck = true;
meta = graphql_parser.meta // {
description = "Build GraphQL schemas and execute queries against them";
};
}