wormhole-william: init at v1.0.4

wormhole-william is an end-to-end encrypted file transfer tool.
It is compatible with Magic Wormhole.
This commit is contained in:
Peter Sanford 2020-07-12 16:29:47 -07:00 committed by zowoq
parent 421b10ea70
commit 8b66a6f863
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "wormhole-william";
version = "1.0.4";
src = fetchFromGitHub {
owner = "psanford";
repo = "wormhole-william";
rev = "v${version}";
sha256 = "1v6kw10gqhyd1adj0wwrr5bmpjqbshdnywsrjpqgg9bl61m5j3wr";
};
vendorSha256 = "1niky252gcxai6vz0cx7pvflg530bc1lmcd2wm2hqg6446r1yxsq";
meta = with stdenv.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 ];
};
}

View File

@ -7544,6 +7544,8 @@ in
inherit (xorg) libxkbfile; inherit (xorg) libxkbfile;
}; };
wormhole-william = callPackage ../tools/networking/wormhole-william { };
wpscan = callPackage ../tools/security/wpscan { }; wpscan = callPackage ../tools/security/wpscan { };
wsmancli = callPackage ../tools/system/wsmancli {}; wsmancli = callPackage ../tools/system/wsmancli {};