We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
checkPhase
sandbox=relaxed
2 parents 07f9afa + 0f83f3f commit 3c5ac8eCopy full SHA for 3c5ac8e
1 file changed
pkgs/by-name/se/sendme/package.nix
@@ -18,6 +18,15 @@ rustPlatform.buildRustPackage rec {
18
useFetchCargoVendor = true;
19
cargoHash = "sha256-1VVpjeGU6/+apTHv7klo7FkAQ3AVjiziQRNI7yFbvh0=";
20
21
+ __darwinAllowLocalNetworking = true;
22
+
23
+ # On Darwin, sendme invokes CoreFoundation APIs that read ICU data from the
24
+ # system. Ensure these paths are accessible in the sandbox to avoid segfaults
25
+ # during checkPhase.
26
+ sandboxProfile = ''
27
+ (allow file-read* (subpath "/usr/share/icu"))
28
+ '';
29
30
meta = with lib; {
31
description = "Tool to send files and directories, based on iroh";
32
homepage = "https://iroh.computer/sendme";
0 commit comments