evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / graphql / default.nix
blob679d89f44b10d3767e25969b68f6ad7824b5ff14
1 { buildDunePackage, alcotest, graphql_parser, rresult, yojson }:
3 buildDunePackage rec {
4   pname = "graphql";
6   inherit (graphql_parser) version src;
8   duneVersion = "3";
10   propagatedBuildInputs = [ graphql_parser rresult yojson ];
12   checkInputs = [ alcotest ];
14   doCheck = true;
16   meta = graphql_parser.meta // {
17     description = "Build GraphQL schemas and execute queries against them";
18   };