mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
23 lines
656 B
Nix
23 lines
656 B
Nix
{ stdenv, fetchurl, autoreconfHook, zlib, bzip2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bgpdump";
|
|
version = "1.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://ris.ripe.net/source/bgpdump/libbgpdump-1.6.0.tgz";
|
|
sha256 = "144369gj35mf63nz4idqwsvgsirw7fybm8kkk07yymrjp8jr3aqk";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs = [ zlib bzip2 ];
|
|
|
|
meta = {
|
|
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;
|
|
};
|
|
}
|