hickory-dns: 0.25.0-alpha.2 -> 0.25.0-alpha.3

https://github.com/hickory-dns/hickory-dns/releases/tag/v0.25.0-alpha.3
This commit is contained in:
Adam Stephens 2024-11-09 15:16:03 +00:00 committed by Adam C. Stephens
parent df76cd6ae1
commit 312ce1b65c
No known key found for this signature in database

View File

@ -9,16 +9,16 @@
rustPlatform.buildRustPackage rec {
pname = "hickory-dns";
version = "0.25.0-alpha.2";
version = "0.25.0-alpha.3";
src = fetchFromGitHub {
owner = "hickory-dns";
repo = "hickory-dns";
rev = "refs/tags/v${version}";
hash = "sha256-bEVApMM6/I3nF1lyRhd+7YtZuSAwiozRkMorRLhLOBY=";
hash = "sha256-P9H21X/lZ8U/yfCL/rCuP9A1wnL7UuTcX7GlCuwo5ZQ=";
};
cargoHash = "sha256-Rq4l1iV70nlhBaJ02hc+dmNZ/Q7qrHoF0Kp0MTmu22A=";
cargoHash = "sha256-3hiMBwr6XT4M7J5KeH9bfGYMjZqOmYDda2Iml2emYMY=";
buildInputs = [ openssl ];
nativeBuildInputs = [ pkg-config ];
@ -26,7 +26,13 @@ rustPlatform.buildRustPackage rec {
# tests expect internet connectivity to query real nameservers like 8.8.8.8
doCheck = false;
passthru.updateScript = nix-update-script { };
passthru.updateScript = nix-update-script {
# remove when 0.25.0 is released
extraArgs = [
"--version"
"unstable"
];
};
meta = {
description = "Rust based DNS client, server, and resolver";