python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / graphql / parser.nix
blobce953a68b3c2a6cb1bd574b7ad0c799e7817582f
1 { lib, buildDunePackage, fetchurl, alcotest, fmt, menhir, re }:
3 buildDunePackage rec {
4   pname = "graphql_parser";
5   version = "0.14.0";
7   minimalOCamlVersion = "4.08";
9   src = fetchurl {
10     url = "https://github.com/andreas/ocaml-graphql-server/releases/download/${version}/graphql-${version}.tbz";
11     sha256 = "sha256-v4v1ueF+NV7LvYIVinaf4rE450Z1P9OiMAito6/NHAY=";
12   };
14   nativeBuildInputs = [ menhir ];
15   propagatedBuildInputs = [ fmt re ];
17   checkInputs = [ alcotest ];
19   doCheck = true;
21   meta = {
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 ];
26   };