ocamlPackages.graphql_ppx: use dune 3

This commit is contained in:
Vincent Laporte 2022-10-19 17:15:46 +02:00 committed by Vincent Laporte
parent c8f907045f
commit dce82561f7

View File

@ -1,4 +1,5 @@
{ lib, buildDunePackage, fetchFromGitHub, alcotest, reason
, result
, ppxlib
, yojson }:
@ -6,6 +7,8 @@ buildDunePackage rec {
pname = "graphql_ppx";
version = "1.2.2";
duneVersion = "3";
minimalOCamlVersion = "4.08";
src = fetchFromGitHub {
@ -19,6 +22,7 @@ buildDunePackage rec {
propagatedBuildInputs = [
reason
result
yojson
];
@ -26,8 +30,6 @@ buildDunePackage rec {
doCheck = true;
useDune2 = true;
meta = {
homepage = "https://github.com/reasonml-community/graphql_ppx";
description = "GraphQL PPX rewriter for Bucklescript/ReasonML";