Skip to content

Commit

Permalink
bgpdump: init at 2017-09-29 (#30461)
Browse files Browse the repository at this point in the history
* bgpdump: init at 2017-09-29

* bgpdump: switch to autoreconfHook
  • Loading branch information
nlewo authored and Mic92 committed Oct 17, 2017
1 parent 569f902 commit 85a1c9e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/tools/networking/bgpdump/default.nix
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 85a1c9e

Please sign in to comment.