nixpkgs/pkgs/tools/networking/wormhole-william/default.nix
Alex James 4c1ccd8a9f
wormhole-william: allow local networking in darwin sandbox
This is needed for the tests to pass with the sandbox enabled.
2024-03-30 02:14:11 -05:00

34 lines
1018 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "wormhole-william";
version = "1.0.7";
src = fetchFromGitHub {
owner = "psanford";
repo = "wormhole-william";
rev = "v${version}";
sha256 = "sha256-KLj9ZeLcIOWA4VeuxfoOr99kUCDb7OARX/h9DSG1WHw=";
};
vendorHash = "sha256-oJz7HgtjuP4ooXdpofIKaDndGg4WqVZgbT8Yb1AyaMs=";
__darwinAllowLocalNetworking = true;
preCheck = ''
# wormhole_test.go:692: failed to establish connection
substituteInPlace wormhole/wormhole_test.go \
--replace "TestWormholeDirectoryTransportSendRecvDirect" \
"SkipWormholeDirectoryTransportSendRecvDirect"
'';
meta = with lib; {
homepage = "https://github.com/psanford/wormhole-william";
description = "End-to-end encrypted file transfers";
changelog = "https://github.com/psanford/wormhole-william/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ psanford ];
mainProgram = "wormhole-william";
};
}