ocamlPackages.dns: 10.1.0 → 10.2.1

This commit is contained in:
Vincent Laporte
2025-10-17 07:20:23 +02:00
parent 689a0c5dad
commit 33cf42eaca
2 changed files with 7 additions and 5 deletions
@@ -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 ];
};
}
})
@@ -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;