From 33cf42eaca055a16abc330302555658e6397758a Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 17 Oct 2025 07:20:23 +0200 Subject: [PATCH] =?UTF-8?q?ocamlPackages.dns:=2010.1.0=20=E2=86=92=2010.2.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/dns/default.nix | 10 +++++----- pkgs/development/ocaml-modules/dns/resolver.nix | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/dns/default.nix b/pkgs/development/ocaml-modules/dns/default.nix index 7fb990255e8b..1c44a92bf2a1 100644 --- a/pkgs/development/ocaml-modules/dns/default.nix +++ b/pkgs/development/ocaml-modules/dns/default.nix @@ -16,15 +16,15 @@ ohex, }: -buildDunePackage rec { +buildDunePackage (finalAttrs: { pname = "dns"; - version = "10.1.0"; + version = "10.2.1"; minimalOCamlVersion = "4.13"; src = fetchurl { - url = "https://github.com/mirage/ocaml-dns/releases/download/v${version}/dns-${version}.tbz"; - hash = "sha256-XG/qUUzsOccy5xdkZD6PuViN7gOMmRwYSsy+07QeN9I="; + url = "https://github.com/mirage/ocaml-dns/releases/download/v${finalAttrs.version}/dns-${finalAttrs.version}.tbz"; + hash = "sha256-tIjPTFFP1X1KLLKbmdQjSuaEXv8NXnmxBZ93n3NCR4o="; }; propagatedBuildInputs = [ @@ -51,4 +51,4 @@ buildDunePackage rec { maintainers = [ lib.maintainers.vbgl ]; }; -} +}) diff --git a/pkgs/development/ocaml-modules/dns/resolver.nix b/pkgs/development/ocaml-modules/dns/resolver.nix index e687badef235..d4ba0ba198ec 100644 --- a/pkgs/development/ocaml-modules/dns/resolver.nix +++ b/pkgs/development/ocaml-modules/dns/resolver.nix @@ -15,6 +15,7 @@ tls, tls-mirage, dnssec, + ca-certs-nss, alcotest, }: @@ -39,6 +40,7 @@ buildDunePackage { tcpip tls tls-mirage + ca-certs-nss ]; doCheck = true;