nixpkgs/pkgs/development/ocaml-modules/graphql/default.nix

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

21 lines
404 B
Nix
Raw Normal View History

2020-12-05 16:27:35 +00:00
{ buildDunePackage, alcotest, graphql_parser, rresult, yojson }:
2019-12-06 06:18:55 +00:00
buildDunePackage rec {
pname = "graphql";
inherit (graphql_parser) version src;
2019-12-06 06:18:55 +00:00
2023-01-09 09:34:06 +00:00
duneVersion = "3";
2019-12-06 06:18:55 +00:00
propagatedBuildInputs = [ graphql_parser rresult yojson ];
checkInputs = [ alcotest ];
2019-12-06 06:18:55 +00:00
doCheck = true;
meta = graphql_parser.meta // {
description = "Build GraphQL schemas and execute queries against them";
};
}