mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
4c1ccd8a9f
This is needed for the tests to pass with the sandbox enabled.
34 lines
1018 B
Nix
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";
|
|
};
|
|
}
|