about summary refs log tree commit diff
path: root/pkgs/by-name/ro/rotonda/package.nix
blob: f049049279d5c8a460502f06ee20f00c08f39778 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, rustPlatform
, fetchFromGitHub
}:

rustPlatform.buildRustPackage rec {
  pname = "rotonda";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "NLnetLabs";
    repo = "rotonda";
    rev = "v${version}";
    hash = "sha256-bhuVzoEgDrfj4z2rfD+2agkXKNLZXN/MA+AxmEaeuLk=";
  };

  cargoHash = "sha256-0i1dFMPNUAMgTdZ+f9fg0DvvhkpCmlPOjYoyFvHT4v4=";

  meta = with lib; {
    description = "Rotonda - composable, programmable BGP Engine";
    homepage = "https://github.com/NLnetLabs/rotonda";
    changelog = "https://github.com/NLnetLabs/rotonda/blob/${src.rev}/Changelog.md";
    license = licenses.mpl20;
    maintainers = with maintainers; [ _0x4A6F ];
    mainProgram = "rotonda";
  };
}