hickory-dns: 0.25.0-alpha.4 -> 0.25.0-alpha.5 (#384741)

This commit is contained in:
Sandro
2025-02-25 16:07:25 +01:00
committed by GitHub
+6 -6
View File
@@ -7,19 +7,19 @@
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "hickory-dns";
version = "0.25.0-alpha.4";
version = "0.25.0-alpha.5";
src = fetchFromGitHub {
owner = "hickory-dns";
repo = "hickory-dns";
tag = "v${version}";
hash = "sha256-yLhTQIu9C1ikm0TtoEPLSt7ZWqJXn4YE2Lrx38sSJtE=";
tag = "v${finalAttrs.version}";
hash = "sha256-dbtdTvwm1DiV/nQzTAZJ7CD5raId9+bGNLrS88OocxI=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-HQit/1umI6+3O9m/Lrsykb72EtLbgM9HXbiMhXU/dr0=";
cargoHash = "sha256-lBxCGR4/PrUJ0JLqBn/VzJY47Yp8M4TRsYfCsZN17Ek=";
buildInputs = [ openssl ];
nativeBuildInputs = [ pkg-config ];
@@ -46,4 +46,4 @@ rustPlatform.buildRustPackage rec {
];
mainProgram = "hickory-dns";
};
}
})