2023-04-15 15:11:31 +00:00
|
|
|
{ lib
|
|
|
|
, callPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
2023-09-27 02:58:21 +00:00
|
|
|
, cmake
|
2023-04-15 15:11:31 +00:00
|
|
|
, pkg-config
|
|
|
|
, protobuf
|
|
|
|
, elfutils
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "router";
|
2023-09-27 02:58:21 +00:00
|
|
|
version = "1.30.1";
|
2023-04-15 15:11:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "apollographql";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-09-27 02:58:21 +00:00
|
|
|
sha256 = "sha256-mQtIjfXDcEy5HfZbWauL0NQLPneGq9EJt/yB8zMuhSU=";
|
2023-04-15 15:11:31 +00:00
|
|
|
};
|
|
|
|
|
2023-09-27 02:58:21 +00:00
|
|
|
cargoHash = "sha256-XCDU6cXw+Wf5MR6m+HCI8/VFRRylMywktZbd5k7Lcwo=";
|
2023-04-15 15:11:31 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2023-09-27 02:58:21 +00:00
|
|
|
cmake
|
2023-04-15 15:11:31 +00:00
|
|
|
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 16:29:26 +00:00
|
|
|
license = licenses.elastic20;
|
2023-04-15 15:11:31 +00:00
|
|
|
maintainers = [ maintainers.bbigras ];
|
2023-12-03 22:45:31 +00:00
|
|
|
knownVulnerabilities = [ "CVE-2023-45812" ];
|
2023-04-15 15:11:31 +00:00
|
|
|
};
|
|
|
|
}
|