2018-05-19 11:01:59 +01:00
|
|
|
{ stdenv, buildGoPackage, fetchzip }:
|
2018-05-19 09:15:26 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wireguard-go";
|
2019-06-01 21:47:25 +01:00
|
|
|
version = "0.0.20190517";
|
2018-05-19 09:15:26 +01:00
|
|
|
|
2018-06-09 04:02:56 +01:00
|
|
|
goPackagePath = "git.zx2c4.com/wireguard-go";
|
2018-05-19 09:15:26 +01:00
|
|
|
|
2018-05-19 11:01:59 +01:00
|
|
|
src = fetchzip {
|
2018-05-19 09:15:26 +01:00
|
|
|
url = "https://git.zx2c4.com/wireguard-go/snapshot/wireguard-go-${version}.tar.xz";
|
2019-06-01 21:47:25 +01:00
|
|
|
sha256 = "0ir3dp13vkkqr76q0jvw610qw40053ngk51psqhqxfaw3jicdqgr";
|
2018-05-19 09:15:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
2019-06-01 21:46:56 +01:00
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
|
2018-05-19 09:15:26 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Userspace Go implementation of WireGuard";
|
|
|
|
homepage = https://git.zx2c4.com/wireguard-go/about/;
|
|
|
|
license = licenses.gpl2;
|
2019-02-22 15:02:51 +00:00
|
|
|
maintainers = with maintainers; [ elseym kirelagin yegortimoshenko zx2c4 ];
|
2018-05-22 01:52:47 +01:00
|
|
|
platforms = platforms.darwin;
|
2018-05-19 09:15:26 +01:00
|
|
|
};
|
|
|
|
}
|