From 3379edc0b0e819751e666ed085f4fc1c1fe6a131 Mon Sep 17 00:00:00 2001 From: 0x4A6F <0x4A6F@users.noreply.github.com> Date: Tue, 21 Oct 2025 08:11:52 +0200 Subject: [PATCH] rotonda: 0.4.2 -> 0.5.0 Release: https://github.com/NLnetLabs/rotonda/releases/tag/v0.5.0 Changes: https://github.com/NLnetLabs/rotonda/compare/v0.4.2...v0.5.0 --- pkgs/by-name/ro/rotonda/package.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/ro/rotonda/package.nix b/pkgs/by-name/ro/rotonda/package.nix index 6d18cef194b9..12f5ee3ba95e 100644 --- a/pkgs/by-name/ro/rotonda/package.nix +++ b/pkgs/by-name/ro/rotonda/package.nix @@ -10,18 +10,23 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "rotonda"; - version = "0.4.2"; + version = "0.5.0"; src = fetchFromGitHub { owner = "NLnetLabs"; repo = "rotonda"; tag = "v${finalAttrs.version}"; - hash = "sha256-B2sdQr9PctWZBpDuatJkUApW5T98BQa4HiqL8+HHevY="; + hash = "sha256-7SVhxUpQq1CCDYNc0xza/2ixjKF8kHBSobt4S+azLQU="; }; - cargoHash = "sha256-XbBlA7QYUtD4uBz4t5ZR70o9bMgVLeSzq6Lexe0jzME="; + cargoHash = "sha256-4wldyvg0VOFTlM0FN/BSsyDNp5HbRumw4Lv4VEJlPfI="; - checkFlags = + checkFlags = [ + # Broken in sandbox: + "--skip=http_api_responses_multiple_gets" + "--skip=representation::genoutput_json" + ] + ++ lib.optionals (stdenv.hostPlatform.system == "aarch64-darwin" || stdenv.hostPlatform.system == "x86_64-darwin") [ @@ -36,10 +41,7 @@ rustPlatform.buildRustPackage (finalAttrs: { passthru = { updateScript = nix-update-script { }; tests.version = testers.testVersion { - package = rotonda; - command = "rotonda --version"; - # tag/release with this version string, please revert to `inherit (finalAttrs) version;` on next release - version = "0.4.3-dev"; + package = finalAttrs.finalPackage; }; };