aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/networking/bgpdump
diff options
context:
space:
mode:
authorlewo <lewo@abesis.fr>2017-10-17 10:37:20 +0200
committerJörg Thalheim <Mic92@users.noreply.github.com>2017-10-17 09:37:20 +0100
commit85a1c9e8674ac4bdfb43b5e59b097cb91bb022c6 (patch)
tree10ec230867f71c7377544124e573250bb3bd7a93 /pkgs/tools/networking/bgpdump
parent569f9026ffe02605c4aa5bf6233039a410320e8a (diff)
bgpdump: init at 2017-09-29 (#30461)
* bgpdump: init at 2017-09-29 * bgpdump: switch to autoreconfHook
Diffstat (limited to 'pkgs/tools/networking/bgpdump')
-rw-r--r--pkgs/tools/networking/bgpdump/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/networking/bgpdump/default.nix b/pkgs/tools/networking/bgpdump/default.nix
new file mode 100644
index 000000000000..55b168a21aec
--- /dev/null
+++ b/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;
+ };
+}