Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
812 B
Nix
40 lines
812 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=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile.in --replace 'ar r libbgpdump.a' '$(AR) r libbgpdump.a'
|
|
'';
|
|
|
|
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;
|
|
mainProgram = "bgpdump";
|
|
};
|
|
}
|