···49 </listitem>
50 <listitem>
51 <para>
000000052 <link xlink:href="https://sr.ht">sourcehut</link>, a
53 collection of tools useful for software development. Available
54 as
···49 </listitem>
50 <listitem>
51 <para>
52+ <link xlink:href="https://www.isc.org/kea/">Kea</link>, ISCs
53+ 2nd generation DHCP and DDNS server suite. Available at
54+ <link xlink:href="options.html#opt-services.kea">services.kea</link>.
55+ </para>
56+ </listitem>
57+ <listitem>
58+ <para>
59 <link xlink:href="https://sr.ht">sourcehut</link>, a
60 collection of tools useful for software development. Available
61 as
+2
nixos/doc/manual/release-notes/rl-2111.section.md
···1516- [geoipupdate](https://github.com/maxmind/geoipupdate), a GeoIP database updater from MaxMind. Available as [services.geoipupdate](options.html#opt-services.geoipupdate.enable).
170018- [sourcehut](https://sr.ht), a collection of tools useful for software development. Available as [services.sourcehut](options.html#opt-services.sourcehut.enable).
1920- [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).
···1516- [geoipupdate](https://github.com/maxmind/geoipupdate), a GeoIP database updater from MaxMind. Available as [services.geoipupdate](options.html#opt-services.geoipupdate.enable).
1718+- [Kea](https://www.isc.org/kea/), ISCs 2nd generation DHCP and DDNS server suite. Available at [services.kea](options.html#opt-services.kea).
19+20- [sourcehut](https://sr.ht), a collection of tools useful for software development. Available as [services.sourcehut](options.html#opt-services.sourcehut.enable).
2122- [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).
···8, libmysqlclient
9, log4cplus
10, postgresql
11-, python3 }:
001213stdenv.mkDerivation rec {
14 pname = "kea";
···4849 enableParallelBuilding = true;
50000051 meta = with lib; {
52 homepage = "https://kea.isc.org/";
53 description = "High-performance, extensible DHCP server by ISC";
54 longDescription = ''
55- KEA is a new open source DHCPv4/DHCPv6 server being developed by
56 Internet Systems Consortium. The objective of this project is to
57 provide a very high-performance, extensible DHCP server engine for
58 use by enterprises and service providers, either as is or with
···60 '';
61 license = licenses.mpl20;
62 platforms = platforms.unix;
63- maintainers = with maintainers; [ fpletz ];
64 };
65}
···8, libmysqlclient
9, log4cplus
10, postgresql
11+, python3
12+, nixosTests
13+}:
1415stdenv.mkDerivation rec {
16 pname = "kea";
···5051 enableParallelBuilding = true;
5253+ passthru.tests = {
54+ inherit (nixosTests) kea;
55+ };
56+57 meta = with lib; {
58 homepage = "https://kea.isc.org/";
59 description = "High-performance, extensible DHCP server by ISC";
60 longDescription = ''
61+ Kea is a new open source DHCPv4/DHCPv6 server being developed by
62 Internet Systems Consortium. The objective of this project is to
63 provide a very high-performance, extensible DHCP server engine for
64 use by enterprises and service providers, either as is or with
···66 '';
67 license = licenses.mpl20;
68 platforms = platforms.unix;
69+ maintainers = with maintainers; [ fpletz hexa ];
70 };
71}