rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / bgpq3 / default.nix
blob7d92aa4ee995a77deba614c04c1554d3a8b5b909
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "bgpq3";
5   version = "0.1.36.1";
7   src = fetchFromGitHub {
8     owner = "snar";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-rOpggVlXKaf3KBhfZ2lVooDaQA0iRjSbsLXF02GEyBw=";
12   };
14   meta = with lib; {
15     description = "bgp filtering automation tool";
16     homepage = "https://github.com/snar/bgpq3";
17     license = licenses.bsd2;
18     maintainers = with maintainers; [ b4dm4n ];
19     platforms = with platforms; unix;
20     mainProgram = "bgpq3";
21   };