depot/third_party/nixpkgs/pkgs/tools/networking/bgpdump/default.nix
Default email 2ea8997135 Project import generated by Copybara.
GitOrigin-RevId: 5bc8b980b9178ef9a4bb622320cf34e59ea2ea10
2021-08-23 10:02:39 +02:00

24 lines
649 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, zlib, bzip2 }:
stdenv.mkDerivation rec {
pname = "bgpdump";
version = "1.6.2";
src = fetchFromGitHub {
owner = "RIPE-NCC";
repo = "bgpdump";
rev = "v${version}";
sha256 = "sha256-1HXMf9mHManR7jhonU2Agon0YFXOlM9APIN1Zm840AM=";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib bzip2 ];
meta = {
homepage = "https://github.com/RIPE-NCC/bgpdump";
description = "Analyze dump files produced by Zebra/Quagga or MRT";
license = lib.licenses.hpnd;
maintainers = with lib.maintainers; [ lewo ];
platforms = with lib.platforms; linux;
};
}