lol

ocamlPackages.graphql_ppx: use dune 3

authored by

Vincent Laporte and committed by
Vincent Laporte
dce82561 c8f90704

+4 -2
+4 -2
pkgs/development/ocaml-modules/graphql_ppx/default.nix
··· 1 1 { lib, buildDunePackage, fetchFromGitHub, alcotest, reason 2 + , result 2 3 , ppxlib 3 4 , yojson }: 4 5 5 6 buildDunePackage rec { 6 7 pname = "graphql_ppx"; 7 8 version = "1.2.2"; 9 + 10 + duneVersion = "3"; 8 11 9 12 minimalOCamlVersion = "4.08"; 10 13 ··· 19 22 20 23 propagatedBuildInputs = [ 21 24 reason 25 + result 22 26 yojson 23 27 ]; 24 28 25 29 checkInputs = [ alcotest ]; 26 30 27 31 doCheck = true; 28 - 29 - useDune2 = true; 30 32 31 33 meta = { 32 34 homepage = "https://github.com/reasonml-community/graphql_ppx";