about summary refs log tree commit diff
path: root/pkgs/tools/networking/bgpdump/default.nix
blob: 5e98228da2e5639109da2102c86d3f2bbc83ff89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ 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;
  };
}