Merge pull request #315743 from mweinelt/kea-2.6.0

kea: 2.4.1 -> 2.6.0
This commit is contained in:
Franz Pletz 2024-05-30 03:59:49 +02:00 committed by GitHub
commit 6584af7321
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 2 deletions

@ -57,6 +57,7 @@ import ./make-test-python.nix ({ pkgs, lib, ...}: {
};
subnet4 = [ {
id = 1;
subnet = "10.0.0.0/29";
pools = [ {
pool = "10.0.0.3 - 10.0.0.3";

@ -66,6 +66,7 @@ import ./make-test-python.nix ({ pkgs, lib, ... }: {
settings = {
interfaces-config.interfaces = [ "eth1" ];
subnet6 = [ {
id = 1;
interface = "eth1";
subnet = "2001:DB8::/32";
pd-pools = [ {

@ -23,11 +23,11 @@
stdenv.mkDerivation rec {
pname = "kea";
version = "2.4.1"; # only even minor versions are stable
version = "2.6.0"; # only even minor versions are stable
src = fetchurl {
url = "https://ftp.isc.org/isc/${pname}/${version}/${pname}-${version}.tar.gz";
hash = "sha256-gVxh9cJxyqSh2zHdZW61Cn9uqXPaNpD3yFgUCOGAExo=";
hash = "sha256-IHzq4z6zuB7E5qxWBSSahbk3eTM7YqrfOeSJ8R283I0=";
};
patches = [