depot/third_party/nixpkgs/pkgs/tools/networking/bgpq4/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

25 lines
569 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "bgpq4";
version = "1.4";
src = fetchFromGitHub {
owner = "bgp";
repo = pname;
rev = version;
sha256 = "sha256-EFxINRFrcNXGtXpNqvBIN6pE1kG3OdeDIHYOsG2celI=";
};
nativeBuildInputs = [
autoreconfHook
];
meta = with lib; {
description = "BGP filtering automation tool";
homepage = "https://github.com/bgp/bgpq4";
license = licenses.bsd2;
maintainers = with maintainers; [ vincentbernat ];
platforms = with platforms; unix;
};
}