571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
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";
|
|
};
|
|
}
|