2023-04-15 16:11:31 +01:00
|
|
|
{ lib
|
|
|
|
, callPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, protobuf
|
|
|
|
, elfutils
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "router";
|
2023-05-28 04:48:55 +01:00
|
|
|
version = "1.19.0";
|
2023-04-15 16:11:31 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apollographql";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-05-28 04:48:55 +01:00
|
|
|
sha256 = "sha256-IuS7NmlTNmHHnnSZ+YIbV6BnxJW2xprOQ5mkz5FuJEQ=";
|
2023-04-15 16:11:31 +01:00
|
|
|
};
|
|
|
|
|
2023-05-28 04:48:55 +01:00
|
|
|
cargoHash = "sha256-yeb+4lgRDssjkEx6bYfGIbn4DJGpZZ/JDmuwFjQ+U+8=";
|
2023-04-15 16:11:31 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
protobuf
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
elfutils
|
|
|
|
];
|
|
|
|
|
|
|
|
# The v8 package will try to download a `librusty_v8.a` release at build time to our read-only filesystem
|
|
|
|
# To avoid this we pre-download the file and export it via RUSTY_V8_ARCHIVE
|
|
|
|
RUSTY_V8_ARCHIVE = callPackage ./librusty_v8.nix { };
|
|
|
|
|
|
|
|
cargoTestFlags = [
|
|
|
|
"-- --skip=uplink::test::stream_from_uplink_error_no_retry"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A configurable, high-performance routing runtime for Apollo Federation";
|
|
|
|
homepage = "https://www.apollographql.com/docs/router/";
|
2023-08-27 17:29:26 +01:00
|
|
|
license = licenses.elastic20;
|
2023-04-15 16:11:31 +01:00
|
|
|
maintainers = [ maintainers.bbigras ];
|
|
|
|
};
|
|
|
|
}
|