bgpdump: init at 2017-09-29 (#30461)
* bgpdump: init at 2017-09-29 * bgpdump: switch to autoreconfHook
This commit is contained in:
parent
569f9026ff
commit
85a1c9e867
21
pkgs/tools/networking/bgpdump/default.nix
Normal file
21
pkgs/tools/networking/bgpdump/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchzip, autoreconfHook, zlib, bzip2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bgpdump-2017-09-29";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://bitbucket.org/ripencc/bgpdump/get/94a0e724b335.zip";
|
||||
sha256 = "09g9vz2zc4nyzl669w1j7fxw21ifja6dxbp0xbqh6n7w3gpx2g88";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
buildInputs = [ zlib bzip2 ];
|
||||
|
||||
meta = {
|
||||
homepage = https://bitbucket.org/ripencc/bgpdump/wiki/Home;
|
||||
description = ''Analyze dump files produced by Zebra/Quagga or MRT'';
|
||||
license = stdenv.lib.licenses.hpnd;
|
||||
maintainers = with stdenv.lib.maintainers; [ lewo ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -13814,6 +13814,8 @@ with pkgs;
|
||||
inherit (gnome2) zenity;
|
||||
};
|
||||
|
||||
bgpdump = callPackage ../tools/networking/bgpdump { };
|
||||
|
||||
blackbox = callPackage ../applications/version-management/blackbox { };
|
||||
|
||||
bleachbit = callPackage ../applications/misc/bleachbit { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user