Merge pull request #88610 from Ma27/wireguard-go

wireguard-go: fix executable name
This commit is contained in:
Florian Klink 2020-05-23 20:41:34 +02:00 committed by GitHub
commit a04104aebc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,10 @@ buildGoPackage rec {
passthru.updateScript = ./update.sh;
postInstall = ''
mv $out/bin/wireguard $out/bin/wireguard-go
'';
meta = with stdenv.lib; {
description = "Userspace Go implementation of WireGuard";
homepage = "https://git.zx2c4.com/wireguard-go/about/";