···4949 </listitem>
5050 <listitem>
5151 <para>
5252+ <link xlink:href="https://www.isc.org/kea/">Kea</link>, ISCs
5353+ 2nd generation DHCP and DDNS server suite. Available at
5454+ <link xlink:href="options.html#opt-services.kea">services.kea</link>.
5555+ </para>
5656+ </listitem>
5757+ <listitem>
5858+ <para>
5259 <link xlink:href="https://sr.ht">sourcehut</link>, a
5360 collection of tools useful for software development. Available
5461 as
+2
nixos/doc/manual/release-notes/rl-2111.section.md
···15151616- [geoipupdate](https://github.com/maxmind/geoipupdate), a GeoIP database updater from MaxMind. Available as [services.geoipupdate](options.html#opt-services.geoipupdate.enable).
17171818+- [Kea](https://www.isc.org/kea/), ISCs 2nd generation DHCP and DDNS server suite. Available at [services.kea](options.html#opt-services.kea).
1919+1820- [sourcehut](https://sr.ht), a collection of tools useful for software development. Available as [services.sourcehut](options.html#opt-services.sourcehut.enable).
19212022- [ucarp](https://download.pureftpd.org/pub/ucarp/README), an userspace implementation of the Common Address Redundancy Protocol (CARP). Available as [networking.ucarp](options.html#opt-networking.ucarp.enable).
···88, libmysqlclient
99, log4cplus
1010, postgresql
1111-, python3 }:
1111+, python3
1212+, nixosTests
1313+}:
12141315stdenv.mkDerivation rec {
1416 pname = "kea";
···48504951 enableParallelBuilding = true;
50525353+ passthru.tests = {
5454+ inherit (nixosTests) kea;
5555+ };
5656+5157 meta = with lib; {
5258 homepage = "https://kea.isc.org/";
5359 description = "High-performance, extensible DHCP server by ISC";
5460 longDescription = ''
5555- KEA is a new open source DHCPv4/DHCPv6 server being developed by
6161+ Kea is a new open source DHCPv4/DHCPv6 server being developed by
5662 Internet Systems Consortium. The objective of this project is to
5763 provide a very high-performance, extensible DHCP server engine for
5864 use by enterprises and service providers, either as is or with
···6066 '';
6167 license = licenses.mpl20;
6268 platforms = platforms.unix;
6363- maintainers = with maintainers; [ fpletz ];
6969+ maintainers = with maintainers; [ fpletz hexa ];
6470 };
6571}