python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / bgpdump / default.nix
blobf60b60c399261240eec6d2faa41c14058876829b
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   nativeBuildInputs = [ autoreconfHook ];
15   buildInputs = [ zlib bzip2 ];
17   meta = {
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;
23   };