iroh-{dns-server,relay}: 0.95.1 -> 0.96.0 (#486280)

This commit is contained in:
Peder Bergebakken Sundt
2026-04-10 19:08:06 +00:00
committed by GitHub
+8 -3
View File
@@ -1,5 +1,6 @@
{
lib,
lld,
fetchFromGitHub,
rustPlatform,
}:
@@ -11,16 +12,16 @@ let
}:
rustPlatform.buildRustPackage rec {
pname = name;
version = "0.95.1";
version = "0.96.0";
src = fetchFromGitHub {
owner = "n0-computer";
repo = "iroh";
rev = "v${version}";
hash = "sha256-YxifH/mH6x6b8J5xyG+/f18o9ngmiLVKvRaDgIv3ok8=";
hash = "sha256-J7FiKIBFUnTUJJwzwzfyk7+CK0UKlAPNFjVDDGlHMqM=";
};
cargoHash = "sha256-MdJpGCLf90fTjbJKHCrLLZbLyb4gmQn4SsF5iCqNVVI=";
cargoHash = "sha256-W8PVysQffGuxBIDpcZ77ujOQ5KBED6svwEXPeZpQmTc=";
buildFeatures = cargoFeatures;
cargoBuildFlags = [
@@ -28,6 +29,10 @@ let
name
];
nativeBuildInputs = [
lld
];
# Some tests require network access which is not available in nix build sandbox.
doCheck = false;