mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 22:53:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
22 lines
360 B
Nix
22 lines
360 B
Nix
{ buildDunePackage, alcotest, graphql, ocaml_lwt }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "graphql-lwt";
|
|
|
|
inherit (graphql) version src;
|
|
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ graphql ocaml_lwt ];
|
|
|
|
nativeCheckInputs = [ alcotest ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = graphql.meta // {
|
|
description = "Build GraphQL schemas with Lwt support";
|
|
};
|
|
|
|
}
|
|
|