depot/third_party/nixpkgs/pkgs/servers/rtrtr/default.nix
Default email 2495e3f88b Project import generated by Copybara.
GitOrigin-RevId: 78cd22c1b8604de423546cd49bfe264b786eca13
2022-01-03 17:56:52 +01:00

42 lines
1.3 KiB
Nix

{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "rtrtr";
version = "0.1.2";
src = fetchFromGitHub {
owner = "NLnetLabs";
repo = pname;
rev = "v${version}";
hash = "sha256-8wcmciQ2OcvMNl6gADte40jrP+VfhoKn95ofjyjtRIo=";
};
cargoSha256 = "sha256-Jdu5U56Duqzakvj3rldzch17y1nhJmuxwJtq4Ydx3IY=";
buildInputs = lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ pkg-config ];
buildNoDefaultFeatures = true;
meta = with lib; {
description = "RPKI data proxy";
longDescription = ''
TRTR is an RPKI data proxy, designed to collect Validated ROA Payloads
from one or more sources in multiple formats and dispatch it onwards. It
provides the means to implement multiple distribution architectures for RPKI
such as centralised RPKI validators that dispatch data to local caching RTR
servers. RTRTR can read RPKI data from multiple RPKI Relying Party packages via
RTR and JSON and, in turn, provide an RTR service for routers to connect to.
'';
homepage = "https://github.com/NLnetLabs/rtrtr";
changelog = "https://github.com/NLnetLabs/rtrtr/blob/v${version}/Changelog.md";
license = licenses.bsd3;
maintainers = with maintainers; [ steamwalker ];
};
}