summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2026-01-17 15:41:11 +0000
committerGitHub <noreply@github.com>2026-01-17 15:41:11 +0000
commit4c65e5831daed721ca4d3a0ab44c78ee9d447c72 (patch)
tree7aa0cb334238c3e48eb739eb0a677982ad2efdcd
parent908aec37d795a6875cc920e7c352653b839bc63d (diff)
parentf6bf3dedf698cce5750808280ae47efc3866307b (diff)
[Backport release-25.11] knot-dns: 3.5.2 -> 3.5.3 (#481042)
-rw-r--r--pkgs/by-name/kn/knot-dns/package.nix6
-rw-r--r--pkgs/development/python-modules/libknot/default.nix4
-rw-r--r--pkgs/servers/monitoring/prometheus/knot-exporter.nix4
3 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/by-name/kn/knot-dns/package.nix b/pkgs/by-name/kn/knot-dns/package.nix
index 09bf158893bc..b047cd0d7d7e 100644
--- a/pkgs/by-name/kn/knot-dns/package.nix
+++ b/pkgs/by-name/kn/knot-dns/package.nix
@@ -27,17 +27,18 @@
autoreconfHook,
nixosTests,
knot-resolver_5,
+ knot-resolver-manager_6,
knot-dns,
runCommandLocal,
}:
stdenv.mkDerivation rec {
pname = "knot-dns";
- version = "3.5.2";
+ version = "3.5.3";
src = fetchurl {
url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz";
- sha256 = "6f577c247ef870a55fe3377246bc1c2d643c673cd32de6c26231ff51d3fc7093";
+ sha256 = "e003ad1eef229c4e65a6cac876ee773e25a06177ecdc83795a26617a6eebe471";
};
outputs = [
@@ -116,6 +117,7 @@ stdenv.mkDerivation rec {
inherit knot-resolver_5;
}
// lib.optionalAttrs stdenv.hostPlatform.isLinux {
+ inherit knot-resolver-manager_6; # not very reliable on non-Linux yet
inherit (nixosTests) knot kea;
prometheus-exporter = nixosTests.prometheus-exporters.knot;
# Some dependencies are very version-sensitive, so the might get dropped
diff --git a/pkgs/development/python-modules/libknot/default.nix b/pkgs/development/python-modules/libknot/default.nix
index ea102d8f55a6..900e6b9e7bed 100644
--- a/pkgs/development/python-modules/libknot/default.nix
+++ b/pkgs/development/python-modules/libknot/default.nix
@@ -12,12 +12,12 @@
buildPythonPackage rec {
pname = "libknot";
- version = "3.5.1";
+ version = "3.5.3";
pyproject = true;
src = fetchPypi {
inherit pname version;
- hash = "sha256-O4kMd07Tmiy+q/klMCoeSp23EkZNoKKeuUHMhzn+118=";
+ hash = "sha256-jnJ7xWO29V04Xln8xSZ+ky5ravQ2rEpSRx8Xh6PWbyw=";
};
postPatch = ''
diff --git a/pkgs/servers/monitoring/prometheus/knot-exporter.nix b/pkgs/servers/monitoring/prometheus/knot-exporter.nix
index 838512a71545..b02cfe0ddedc 100644
--- a/pkgs/servers/monitoring/prometheus/knot-exporter.nix
+++ b/pkgs/servers/monitoring/prometheus/knot-exporter.nix
@@ -7,13 +7,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "knot-exporter";
- version = "3.5.1";
+ version = "3.5.3";
pyproject = true;
src = fetchPypi {
pname = "knot_exporter";
inherit version;
- hash = "sha256-BsNjzqGSH5Pn+deL2rM0XMVvpGdRfzuo4vzbG4I5Mtw=";
+ hash = "sha256-sCmzYS6mjEUHomA25HRxJs2X+9Uv50ll4tqR2BAj0ro=";
};
build-system = [