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

25 lines
649 B
Nix
Raw Normal View History

2021-08-22 16:53:19 +03:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, zlib, bzip2 }:
2019-11-12 00:17:43 +03:00
stdenv.mkDerivation rec {
pname = "bgpdump";
2021-08-22 16:53:19 +03:00
version = "1.6.2";
2021-08-22 16:53:19 +03:00
src = fetchFromGitHub {
owner = "RIPE-NCC";
repo = "bgpdump";
rev = "v${version}";
sha256 = "sha256-1HXMf9mHManR7jhonU2Agon0YFXOlM9APIN1Zm840AM=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib bzip2 ];
meta = {
2021-08-22 16:53:19 +03:00
homepage = "https://github.com/RIPE-NCC/bgpdump";
description = "Analyze dump files produced by Zebra/Quagga or MRT";
2021-01-15 12:19:50 +03:00
license = lib.licenses.hpnd;
maintainers = with lib.maintainers; [ lewo ];
platforms = with lib.platforms; linux;
};
}