1 { lib, buildDunePackage, fetchurl, alcotest, fmt, menhir, re }:
4 pname = "graphql_parser";
7 minimalOCamlVersion = "4.08";
10 url = "https://github.com/andreas/ocaml-graphql-server/releases/download/${version}/graphql-${version}.tbz";
11 sha256 = "sha256-v4v1ueF+NV7LvYIVinaf4rE450Z1P9OiMAito6/NHAY=";
14 nativeBuildInputs = [ menhir ];
15 propagatedBuildInputs = [ fmt re ];
17 checkInputs = [ alcotest ];
22 homepage = "https://github.com/andreas/ocaml-graphql-server";
23 description = "Library for parsing GraphQL queries";
24 license = lib.licenses.mit;
25 maintainers = [ lib.maintainers.vbgl ];