mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
20 lines
404 B
Nix
20 lines
404 B
Nix
{ buildDunePackage, alcotest, graphql_parser, rresult, yojson }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "graphql";
|
|
|
|
inherit (graphql_parser) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ graphql_parser rresult yojson ];
|
|
|
|
checkInputs = [ alcotest ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = graphql_parser.meta // {
|
|
description = "Build GraphQL schemas and execute queries against them";
|
|
};
|
|
|
|
}
|