about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix
blob: 59e832291f6f32aed459aaf12b704935a82eb629 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ lib, buildDunePackage, fetchFromGitHub, alcotest, cppo
, ocaml-migrate-parsetree, ppx_tools_versioned, reason, result, yojson }:

buildDunePackage rec {
  pname = "graphql_ppx";
  version = "0.7.1";

  minimumOCamlVersion = "4.06";

  src = fetchFromGitHub {
    owner = "reasonml-community";
    repo = "graphql_ppx";
    rev = "v${version}";
    sha256 = "0gpzwcnss9c82whncyxfm6gwlkgh9hy90329hrazny32ybb470zh";
  };

  propagatedBuildInputs =
    [ cppo ocaml-migrate-parsetree ppx_tools_versioned reason result yojson ];

  checkInputs = lib.optional doCheck alcotest;

  doCheck = false;

  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 ];
  };
}