nixpkgs/pkgs/tools/networking/bgpdump/default.nix

23 lines
654 B
Nix
Raw Normal View History

2019-11-11 21:17:43 +00:00
{ stdenv, fetchurl, autoreconfHook, zlib, bzip2 }:
2019-11-11 21:17:43 +00:00
stdenv.mkDerivation rec {
pname = "bgpdump";
version = "1.6.0";
2019-11-11 21:17:43 +00:00
src = fetchurl {
url = "https://ris.ripe.net/source/bgpdump/libbgpdump-1.6.0.tgz";
sha256 = "144369gj35mf63nz4idqwsvgsirw7fybm8kkk07yymrjp8jr3aqk";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib bzip2 ];
meta = {
2019-11-11 21:17:43 +00:00
homepage = https://bitbucket.org/ripencc/bgpdump/;
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;
};
}