1 { lib, stdenv, fetchFromGitHub, autoreconfHook, zlib, bzip2 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-1HXMf9mHManR7jhonU2Agon0YFXOlM9APIN1Zm840AM=";
14 nativeBuildInputs = [ autoreconfHook ];
15 buildInputs = [ zlib bzip2 ];
18 homepage = "https://github.com/RIPE-NCC/bgpdump";
19 description = "Analyze dump files produced by Zebra/Quagga or MRT";
20 license = lib.licenses.hpnd;
21 maintainers = with lib.maintainers; [ lewo ];
22 platforms = with lib.platforms; linux;