mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
ocamlPackages.graphql_ppx: use dune 3
This commit is contained in:
parent
c8f907045f
commit
dce82561f7
1 changed files with 4 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue