nixpkgs/pkgs/development/ocaml-modules/graphql/default.nix
Vincent Laporte 7ed0a6f85f ocamlPackages.graphql: 0.13.0 → 0.14.0
ocamlPackages.irmin-graphql: mark as broken
2022-08-17 12:13:04 +02:00

19 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";
};
}