ocamlPackages.graphql: 0.13.0 → 0.14.0

ocamlPackages.irmin-graphql: mark as broken
This commit is contained in:
Vincent Laporte 2022-08-09 17:13:21 +02:00 committed by Vincent Laporte
parent 17469cc30a
commit 7ed0a6f85f
4 changed files with 8 additions and 9 deletions

View File

@ -3,7 +3,7 @@
buildDunePackage rec {
pname = "graphql";
inherit (graphql_parser) version useDune2 src;
inherit (graphql_parser) version src;
propagatedBuildInputs = [ graphql_parser rresult yojson ];

View File

@ -3,7 +3,7 @@
buildDunePackage rec {
pname = "graphql-lwt";
inherit (graphql) version useDune2 src;
inherit (graphql) version src;
propagatedBuildInputs = [ graphql ocaml_lwt ];

View File

@ -1,16 +1,14 @@
{ lib, buildDunePackage, fetchurl, alcotest, fmt, menhir, re }:
{ lib, buildDunePackage, ocaml, fetchurl, alcotest, fmt, menhir, re }:
buildDunePackage rec {
pname = "graphql_parser";
version = "0.13.0";
version = "0.14.0";
useDune2 = true;
minimumOCamlVersion = "4.03";
minimalOCamlVersion = "4.05";
src = fetchurl {
url = "https://github.com/andreas/ocaml-graphql-server/releases/download/${version}/graphql-${version}.tbz";
sha256 = "0gb5y99ph0nz5y3pc1gxq1py4wji2hyf2ydbp0hv23v00n50hpsm";
sha256 = "sha256-v4v1ueF+NV7LvYIVinaf4rE450Z1P9OiMAito6/NHAY=";
};
nativeBuildInputs = [ menhir ];
@ -18,7 +16,7 @@ buildDunePackage rec {
checkInputs = [ alcotest ];
doCheck = true;
doCheck = lib.versionAtLeast ocaml.version "4.08";
meta = {
homepage = "https://github.com/andreas/ocaml-graphql-server";

View File

@ -24,6 +24,7 @@ buildDunePackage rec {
meta = irmin.meta // {
description = "GraphQL server for Irmin";
broken = true; # Not compatible with graphql 0.14
};
}