2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2020-04-26 19:34:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bgpq4";
|
2021-04-30 05:24:12 +01:00
|
|
|
version = "0.0.7";
|
2020-04-26 19:34:29 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bgp";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-04-30 05:24:12 +01:00
|
|
|
sha256 = "sha256-iEm4BYlJi56Y4OBCdEDgRQ162F65PLZyvHSEQzULFww=";
|
2020-04-26 19:34:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-26 19:34:29 +01:00
|
|
|
description = "BGP filtering automation tool";
|
|
|
|
homepage = "https://github.com/bgp/bgpq4";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ vincentbernat ];
|
|
|
|
platforms = with platforms; unix;
|
|
|
|
};
|
|
|
|
}
|