aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix32
1 files changed, 32 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix b/nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix
new file mode 100644
index 00000000000..f75465e99a2
--- /dev/null
+++ b/nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix
@@ -0,0 +1,32 @@
+{ lib, buildDunePackage, fetchFromGitHub, alcotest, cppo
+, ocaml-migrate-parsetree, ppx_tools_versioned, reason, yojson }:
+
+buildDunePackage rec {
+ pname = "graphql_ppx";
+ version = "1.0.1";
+
+ minimumOCamlVersion = "4.06";
+
+ src = fetchFromGitHub {
+ owner = "reasonml-community";
+ repo = "graphql-ppx";
+ rev = "v${version}";
+ sha256 = "0lvmv1sb0ca9mja6di1dbmsgjqgj3w9var4amv1iz9nhwjjx4cpi";
+ };
+
+ propagatedBuildInputs =
+ [ cppo ocaml-migrate-parsetree ppx_tools_versioned reason yojson ];
+
+ checkInputs = lib.optional doCheck alcotest;
+
+ doCheck = false;
+
+ useDune2 = true;
+
+ meta = {
+ homepage = "https://github.com/reasonml-community/graphql_ppx";
+ description = "GraphQL PPX rewriter for Bucklescript/ReasonML";
+ license = lib.licenses.bsd3;
+ maintainers = with lib.maintainers; [ Zimmi48 jtcoolen ];
+ };
+}