frr: init at 7.5.1

- FRRouting is a successor of no-longer maintained quagga.
- new dependency: libyang
main
Frank Doepper 3 years ago committed by Martin Weinelt
parent 5b646ed20a
commit 89956e7d6e
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
  1. 90
      pkgs/servers/frr/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,90 @@
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
, libcap
, json_c
, readline
, net-snmp
, perl
, texinfo
, pkg-config
, c-ares
, python3
, python3Packages
, libyang
, flex
, bison
, openssl
, czmq
, nixosTests
}:
stdenv.mkDerivation rec {
pname = "frr";
version = "7.5.1";
src = fetchFromGitHub {
owner = "FRRouting";
repo = pname;
rev = "${pname}-${version}";
sha256 = "0lzsvi3kl9zcd4k04vc3363z9v2yrp7wc8bziv6w9h5fznh2vkxp";
};
buildInputs = [ readline net-snmp c-ares json_c python3 libyang openssl czmq ]
++ lib.optionals stdenv.isLinux [ libcap ];
nativeBuildInputs = [ pkg-config perl texinfo autoreconfHook python3Packages.sphinx python3Packages.pytest flex bison ];
configureFlags = [
"--sysconfdir=/etc/frr"
"--localstatedir=/run/frr"
"--sbindir=$(out)/libexec/frr"
"--disable-exampledir"
"--enable-user=frr"
"--enable-group=frr"
"--enable-configfile-mask=0640"
"--enable-logfile-mask=0640"
"--enable-vty-group=frrvty"
"--enable-snmp"
"--enable-multipath=64"
];
postPatch = ''
substituteInPlace tools/frr-reload --replace /usr/lib/frr/ $out/libexec/frr/
'';
enableParallelBuilding = true;
passthru.tests = { inherit (nixosTests) frr; };
meta = with lib; {
description = "FRR BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite";
longDescription = ''
FRRouting (FRR) is a free and open source Internet routing protocol suite
for Linux and Unix platforms. It implements BGP, OSPF, RIP, IS-IS, PIM,
LDP, BFD, Babel, PBR, OpenFabric and VRRP, with alpha support for EIGRP
and NHRP.
FRRs seamless integration with native Linux/Unix IP networking stacks
makes it a general purpose routing stack applicable to a wide variety of
use cases including connecting hosts/VMs/containers to the network,
advertising network services, LAN switching and routing, Internet access
routers, and Internet peering.
FRR has its roots in the Quagga project. In fact, it was started by many
long-time Quagga developers who combined their efforts to improve on
Quaggas well-established foundation in order to create the best routing
protocol stack available. We invite you to participate in the FRRouting
community and help shape the future of networking.
Join the ranks of network architects using FRR for ISPs, SaaS
infrastructure, web 2.0 businesses, hyperscale services, and Fortune 500
private clouds.
'';
homepage = "https://frrouting.org/";
license = with licenses; [ gpl2Plus lgpl21Plus ];
platforms = platforms.unix;
maintainers = with maintainers; [ woffs ];
};
}

@ -5346,6 +5346,8 @@ with pkgs;
flvstreamer = callPackage ../tools/networking/flvstreamer { };
frr = callPackage ../servers/frr { };
hmetis = pkgsi686Linux.callPackage ../applications/science/math/hmetis { };
libbsd = callPackage ../development/libraries/libbsd { };

Loading…
Cancel
Save