mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
bgpq4: init at 0.0.6
This is a fork of bgpq3. It is still unclear if it will superseed bgpq3. It is mostly compatible with additional features, like support for Mikrotik devices. It also defaults to NTT IRR server instead of RADB.
This commit is contained in:
parent
019c72c12e
commit
c463b54051
25
pkgs/tools/networking/bgpq4/default.nix
Normal file
25
pkgs/tools/networking/bgpq4/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bgpq4";
|
||||
version = "0.0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bgp";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1n6d6xq7vafx1la0fckqv0yjr245ka9dgbcqaz9m6dcdk0fdlkks";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "BGP filtering automation tool";
|
||||
homepage = "https://github.com/bgp/bgpq4";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ vincentbernat ];
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
@ -19551,6 +19551,8 @@ in
|
||||
|
||||
bgpq3 = callPackage ../tools/networking/bgpq3 { };
|
||||
|
||||
bgpq4 = callPackage ../tools/networking/bgpq4 { };
|
||||
|
||||
blackbox = callPackage ../applications/version-management/blackbox { };
|
||||
|
||||
bleachbit = callPackage ../applications/misc/bleachbit { };
|
||||
|
Loading…
Reference in New Issue
Block a user