depot/pkgs/by-name/ro/rotonda/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
705 B
Nix

{ 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";
};
}