python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / networking / bgpq4 / default.nix
blob8b8659f28151fef8c9b35aed8047909323429479
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "bgpq4";
5   version = "1.7";
7   src = fetchFromGitHub {
8     owner = "bgp";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-0gqd/bEj8ZDpf/3J2iZnGswTO6k8aJOuRiZXMZLm7zo=";
12   };
14   nativeBuildInputs = [
15     autoreconfHook
16   ];
18   meta = with lib; {
19     description = "BGP filtering automation tool";
20     homepage = "https://github.com/bgp/bgpq4";
21     license = licenses.bsd2;
22     maintainers = with maintainers; [ vincentbernat ];
23     platforms = with platforms; unix;
24   };