diff options
| author | Vladimír Čunát <v@cunat.cz> | 2023-06-06 09:01:28 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-06-06 09:17:21 +0000 |
| commit | d0b69f891fce8beb00838ecda6aa58bdb81b1f6a (patch) | |
| tree | d2161f4573f52714b5cf5bef9450cfb2bfeae0a2 | |
| parent | Merge pull request #236102 from NixOS/backport-193253-to-release-23.05 (diff) | |
| download | nixpkgs-origin/backport-236219-to-release-23.05.tar.gz | |
knot-dns: 3.2.6 -> 3.2.7origin/backport-236219-to-release-23.05
https://gitlab.nic.cz/knot/knot-dns/-/releases/v3.2.7
(cherry picked from commit 7cd71872549f1e6aa992dd74ec0402ce73c18b74)
| -rw-r--r-- | pkgs/servers/dns/knot-dns/default.nix | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/servers/dns/knot-dns/default.nix b/pkgs/servers/dns/knot-dns/default.nix index 594db03f2c62..f5a3dec64e5e 100644 --- a/pkgs/servers/dns/knot-dns/default.nix +++ b/pkgs/servers/dns/knot-dns/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { pname = "knot-dns"; - version = "3.2.6"; + version = "3.2.7"; src = fetchurl { url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; - sha256 = "ac124fb17dbc4ac5310a30a396245a6ba304b3c89abed0f8a47d727462c8da4d"; + sha256 = "d3b7872ac8aa80f7f54ddb1bb3b1e2f90ec55f7270a2c4a9338eab42b7d2767b"; }; outputs = [ "bin" "out" "dev" ]; @@ -29,6 +29,12 @@ stdenv.mkDerivation rec { ./runtime-deps.patch ]; + # Upstream mistake in 3.2.7: too strict constraint. + postPatch = '' + substituteInPlace configure.ac \ + --replace 'libngtcp2 = 0.13.0' 'libngtcp2 = 0.13.1' + ''; + nativeBuildInputs = [ pkg-config autoreconfHook ]; buildInputs = [ gnutls liburcu libidn2 libunistring |
