From aff940f761c4bbcdde9a5aad3321979cc9ffc5a3 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Sun, 8 Sep 2024 02:32:31 +0200 Subject: [PATCH] conserve: 23.11.0 -> 24.8.0 Diff: https://github.com/sourcefrog/conserve/compare/v23.11.0...v24.8.0 --- pkgs/tools/backup/conserve/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/backup/conserve/default.nix b/pkgs/tools/backup/conserve/default.nix index a3f4dc3f734c2c9..12250ee2b6fd9a5 100644 --- a/pkgs/tools/backup/conserve/default.nix +++ b/pkgs/tools/backup/conserve/default.nix @@ -5,16 +5,23 @@ rustPlatform.buildRustPackage rec { pname = "conserve"; - version = "23.11.0"; + version = "24.8.0"; src = fetchFromGitHub { owner = "sourcefrog"; repo = "conserve"; rev = "v${version}"; - hash = "sha256-Ck2+3etwfZiDMZHzI2hIBuUKn7L0ZTGEe9yJjXjoRIM="; + hash = "sha256-rdZTx0wFFtWt3EcpvWHY6m+8TEHEj53vhVpdRp5wbos="; }; - cargoHash = "sha256-tMj1icGNTFpouts1TE6BIiABexV3vmOW9r5Y/7ynUMM="; + cargoHash = "sha256-IP9x3n5RdI+TKOhMBWEfw9P2CROcC0SmEsmMVaXjiDE="; + + checkFlags = [ + # expected to panic if unix user has no secondary group, + # which is the case in the nix sandbox + "--skip=test_fixtures::test::arbitrary_secondary_group_is_found" + "--skip=chgrp_reported_as_changed" + ]; meta = with lib; { description = "Robust portable backup tool in Rust";