rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / bgpq4 / default.nix
blob006bfbf595dde96c12ef72efb024e25f2cf735a3
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "bgpq4";
5   version = "1.13";
7   src = fetchFromGitHub {
8     owner = "bgp";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-Kw1Y9g2ItclDYYoZC2FTdBTec7zoM/N3Vk4zM8EVBR0=";
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     mainProgram = "bgpq4";
25   };