2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2020-07-13 00:29:47 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "wormhole-william";
|
2021-12-22 02:02:55 +00:00
|
|
|
version = "1.0.6";
|
2020-07-13 00:29:47 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "psanford";
|
|
|
|
repo = "wormhole-william";
|
|
|
|
rev = "v${version}";
|
2021-12-22 02:02:55 +00:00
|
|
|
sha256 = "sha256-L/0zgQkwADElpIzOJAROa3CN/YNl76Af2pAhX8y2Wxs=";
|
2020-07-13 00:29:47 +01:00
|
|
|
};
|
|
|
|
|
2021-12-22 02:02:55 +00:00
|
|
|
vendorSha256 = "sha256-J6iht3cagcwFekydShgaYJtkNLfEvSDqonkC7+frldM=";
|
2020-07-13 00:29:47 +01:00
|
|
|
|
2022-04-13 15:58:18 +01:00
|
|
|
preCheck = ''
|
|
|
|
# wormhole_test.go:692: failed to establish connection
|
|
|
|
substituteInPlace wormhole/wormhole_test.go \
|
|
|
|
--replace "TestWormholeDirectoryTransportSendRecvDirect" \
|
|
|
|
"SkipWormholeDirectoryTransportSendRecvDirect"
|
|
|
|
'';
|
2020-08-04 01:26:27 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-07-13 00:29:47 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|