mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 07:00:43 +00:00
routinator: init at 0.4.0
This commit is contained in:
parent
dc336293a1
commit
39de81af3d
23
pkgs/servers/routinator/default.nix
Normal file
23
pkgs/servers/routinator/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "routinator";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "NLnetLabs";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0ldnak1jszfkwya0aci7ns3293y45jp7iirilnqypklsmmm108r4";
|
||||
};
|
||||
|
||||
cargoSha256 = "0yx5sanblalh5q06cn0mrf5bc5518y1awmvyi5yhh55cz6bg6h1m";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "An RPKI Validator written in Rust";
|
||||
homepage = "https://github.com/NLnetLabs/routinator";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers."0x4A6F" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1848,6 +1848,8 @@ in
|
|||
|
||||
roundcubePlugins = dontRecurseIntoAttrs (callPackage ../servers/roundcube/plugins { });
|
||||
|
||||
routinator = callPackage ../servers/routinator { };
|
||||
|
||||
rsbep = callPackage ../tools/backup/rsbep { };
|
||||
|
||||
rsyslog = callPackage ../tools/system/rsyslog {
|
||||
|
|
Loading…
Reference in a new issue