From 414a3231fa2cda16f039440f98e57a870d4fb0f5 Mon Sep 17 00:00:00 2001 From: Emily Date: Fri, 31 Oct 2025 22:41:16 +0000 Subject: [PATCH] sendme: 0.27.0 -> 0.30.0 Diff: https://github.com/n0-computer/sendme/compare/v0.27.0...v0.30.0 --- pkgs/by-name/se/sendme/package.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/se/sendme/package.nix b/pkgs/by-name/se/sendme/package.nix index 259e8bc8800c..1a44281ae6b8 100644 --- a/pkgs/by-name/se/sendme/package.nix +++ b/pkgs/by-name/se/sendme/package.nix @@ -6,25 +6,19 @@ rustPlatform.buildRustPackage rec { pname = "sendme"; - version = "0.27.0"; + version = "0.30.0"; src = fetchFromGitHub { owner = "n0-computer"; repo = "sendme"; rev = "v${version}"; - hash = "sha256-A1dZH7qeQTsMaJdB4UejpP/HD5tE07gCHFv2Mb1ZXWY="; + hash = "sha256-LcSQuvNXSHqaiBE6GR3rNALAYPc9Xezf5cV8Im9qYMo="; }; - cargoHash = "sha256-Iwm1VGxIBfuT3nXk5Si9gpDFJRjHBOc3nfE8DFvI5YE="; + cargoHash = "sha256-/hgkMWEokcOh3ebZ2pIunktJmuq0YpI6IixO7XoNRCk="; - __darwinAllowLocalNetworking = true; - - # On Darwin, sendme invokes CoreFoundation APIs that read ICU data from the - # system. Ensure these paths are accessible in the sandbox to avoid segfaults - # during checkPhase. - sandboxProfile = '' - (allow file-read* (subpath "/usr/share/icu")) - ''; + # The tests require contacting external servers. + doCheck = false; meta = with lib; { description = "Tool to send files and directories, based on iroh";