mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +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.
28 lines
544 B
Nix
28 lines
544 B
Nix
{ lib, buildDunePackage, cohttp-lwt, cohttp-lwt-unix, graphql-cohttp, graphql-lwt, irmin, git-unix
|
|
, alcotest, alcotest-lwt, logs, yojson, cacert
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "irmin-graphql";
|
|
|
|
inherit (irmin) version src;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [ cohttp-lwt cohttp-lwt-unix graphql-cohttp graphql-lwt irmin git-unix ];
|
|
|
|
doCheck = true;
|
|
|
|
nativeCheckInputs = [
|
|
alcotest
|
|
alcotest-lwt
|
|
logs
|
|
yojson
|
|
cacert
|
|
];
|
|
|
|
meta = irmin.meta // {
|
|
description = "GraphQL server for Irmin";
|
|
};
|
|
}
|