nixpkgs/pkgs/development/ocaml-modules/graphql_ppx/default.nix

38 lines
773 B
Nix
Raw Permalink Normal View History

{ lib, buildDunePackage, fetchFromGitHub, alcotest, reason
, ppxlib
, yojson }:
2020-06-08 13:37:04 +00:00
buildDunePackage rec {
pname = "graphql_ppx";
version = "1.2.0";
2020-06-08 13:37:04 +00:00
minimalOCamlVersion = "4.08";
2020-06-08 13:37:04 +00:00
src = fetchFromGitHub {
owner = "reasonml-community";
repo = "graphql-ppx";
2020-06-08 13:37:04 +00:00
rev = "v${version}";
sha256 = "1fymmvk616wv5xkwfdmqibdgfl47ry6idc5wfh20a3mz9mpaa13s";
2020-06-08 13:37:04 +00:00
};
buildInputs = [ ppxlib ];
2020-06-08 13:37:04 +00:00
propagatedBuildInputs = [
reason
yojson
];
2020-06-08 13:37:04 +00:00
checkInputs = [ alcotest ];
doCheck = true;
2020-06-08 13:37:04 +00:00
useDune2 = true;
2020-06-08 13:37:04 +00:00
meta = {
homepage = "https://github.com/reasonml-community/graphql_ppx";
description = "GraphQL PPX rewriter for Bucklescript/ReasonML";
license = lib.licenses.mit;
2020-06-08 13:37:04 +00:00
maintainers = with lib.maintainers; [ Zimmi48 jtcoolen ];
};
}