summary refs log tree commit diff
path: root/pkgs/servers/quagga/default.nix
blob: 5bff70878d3b7b462cf6e84b6583ec9fec2cca04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{ stdenv, fetchurl, libcap, libnl, readline, net-snmp, less, perl, texinfo,
  pkgconfig, 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 ]
    ++ stdenv.lib.optionals stdenv.isLinux [ libcap libnl ];

  nativeBuildInputs = [ pkgconfig 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 stdenv.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 ];
  };
}