Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / rtrtr / default.nix
blobfa5b4a30c63ad9588851af910a530f10f41455f0
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , pkg-config
5 , stdenv
6 , Security
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "rtrtr";
11   version = "0.3.0";
13   src = fetchFromGitHub {
14     owner = "NLnetLabs";
15     repo = pname;
16     rev = "v${version}";
17     hash = "sha256-P9bofTmDpnNCVQAGeq9J2XqfNeula8nL1KoBIHMZNWg=";
18   };
20   cargoHash = "sha256-ToJLE4nqgTqg5D4Qh2zi+wjmcdwDo0aupoDwKJCTwnM=";
22   buildInputs = lib.optional stdenv.isDarwin Security;
23   nativeBuildInputs = [ pkg-config ];
25   buildNoDefaultFeatures = true;
27   meta = with lib; {
28     description = "RPKI data proxy";
29     longDescription = ''
30       TRTR is an RPKI data proxy, designed to collect Validated ROA Payloads
31       from one or more sources in multiple formats and dispatch it onwards. It
32       provides the means to implement multiple distribution architectures for RPKI
33       such as centralised RPKI validators that dispatch data to local caching RTR
34       servers. RTRTR can read RPKI data from multiple RPKI Relying Party packages via
35       RTR and JSON and, in turn, provide an RTR service for routers to connect to.
36     '';
37     homepage = "https://github.com/NLnetLabs/rtrtr";
38     changelog = "https://github.com/NLnetLabs/rtrtr/blob/v${version}/Changelog.md";
39     license = licenses.bsd3;
40     maintainers = with maintainers; [ steamwalker ];
41     mainProgram = "rtrtr";
42   };