summary refs log tree commit diff
path: root/pkgs/tools/networking/bgpdump/default.nix
blob: 55b168a21aecd43e18e99c075e63ff0bc7774b3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
  };
}