biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / bgpdump / default.nix
blob4ca75a53c254b20744fa9926a86b26064d947d42
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, zlib, bzip2 }:
3 stdenv.mkDerivation rec {
4   pname = "bgpdump";
5   version = "1.6.2";
7   src = fetchFromGitHub {
8     owner = "RIPE-NCC";
9     repo = "bgpdump";
10     rev = "v${version}";
11     sha256 = "sha256-1HXMf9mHManR7jhonU2Agon0YFXOlM9APIN1Zm840AM=";
12   };
14   postPatch = ''
15     substituteInPlace Makefile.in --replace 'ar r libbgpdump.a' '$(AR) r libbgpdump.a'
16   '';
18   nativeBuildInputs = [ autoreconfHook ];
19   buildInputs = [ zlib bzip2 ];
21   meta = {
22     homepage = "https://github.com/RIPE-NCC/bgpdump";
23     description = "Analyze dump files produced by Zebra/Quagga or MRT";
24     license = lib.licenses.hpnd;
25     maintainers = with lib.maintainers; [ lewo ];
26     platforms = with lib.platforms; linux;
27     mainProgram = "bgpdump";
28   };