9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
74 lines
2.2 KiB
Nix
74 lines
2.2 KiB
Nix
{ lib, stdenv, fetchurl, libcap, libnl, readline, net-snmp, less, perl, texinfo,
|
|
pkg-config, c-ares }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "quagga";
|
|
version = "1.2.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://savannah/quagga/${pname}-${version}.tar.gz";
|
|
sha256 = "1lsksqxij5f1llqn86pkygrf5672kvrqn1kvxghi169hqf1c0r73";
|
|
};
|
|
|
|
buildInputs =
|
|
[ readline net-snmp c-ares ]
|
|
++ lib.optionals stdenv.isLinux [ libcap libnl ];
|
|
|
|
nativeBuildInputs = [ pkg-config perl texinfo ];
|
|
|
|
configureFlags = [
|
|
"--sysconfdir=/etc/quagga"
|
|
"--localstatedir=/run/quagga"
|
|
"--sbindir=$(out)/libexec/quagga"
|
|
"--disable-exampledir"
|
|
"--enable-user=quagga"
|
|
"--enable-group=quagga"
|
|
"--enable-configfile-mask=0640"
|
|
"--enable-logfile-mask=0640"
|
|
"--enable-vtysh"
|
|
"--enable-vty-group=quaggavty"
|
|
"--enable-snmp"
|
|
"--enable-multipath=64"
|
|
"--enable-rtadv"
|
|
"--enable-irdp"
|
|
"--enable-opaque-lsa"
|
|
"--enable-ospf-te"
|
|
"--enable-pimd"
|
|
"--enable-isis-topology"
|
|
];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace vtysh/vtysh.c --replace \"more\" \"${less}/bin/less\"
|
|
'';
|
|
|
|
postInstall = ''
|
|
rm -f $out/bin/test_igmpv3_join
|
|
mv -f $out/libexec/quagga/ospfclient $out/bin/
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Quagga BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite";
|
|
longDescription = ''
|
|
GNU Quagga is free software which manages TCP/IP based routing protocols.
|
|
It supports BGP4, BGP4+, OSPFv2, OSPFv3, IS-IS, RIPv1, RIPv2, and RIPng as
|
|
well as the IPv6 versions of these.
|
|
|
|
As the predecessor Zebra has been considered orphaned, the Quagga project
|
|
has been formed by members of the zebra mailing list and the former
|
|
zebra-pj project to continue developing.
|
|
|
|
Quagga uses threading if the kernel supports it, but can also run on
|
|
kernels that do not support threading. Each protocol has its own daemon.
|
|
|
|
It is more than a routed replacement, it can be used as a Route Server and
|
|
a Route Reflector.
|
|
'';
|
|
homepage = "https://www.nongnu.org/quagga/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ tavyc ];
|
|
};
|
|
}
|