2018-05-19 12:01:59 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchzip }:
|
2018-05-19 10:15:26 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "wireguard-go-${version}";
|
2018-10-13 14:26:42 +02:00
|
|
|
version = "0.0.20181001";
|
2018-05-19 10:15:26 +02:00
|
|
|
|
2018-06-09 05:02:56 +02:00
|
|
|
goPackagePath = "git.zx2c4.com/wireguard-go";
|
2018-05-19 10:15:26 +02:00
|
|
|
|
2018-05-19 12:01:59 +02:00
|
|
|
src = fetchzip {
|
2018-05-19 10:15:26 +02:00
|
|
|
url = "https://git.zx2c4.com/wireguard-go/snapshot/wireguard-go-${version}.tar.xz";
|
2018-10-13 14:26:42 +02:00
|
|
|
sha256 = "0yh9f58xn8kcq3wgx2s8j19k2h1vbmg70fn5gvw9k98f5mzynls3";
|
2018-05-19 10:15:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Userspace Go implementation of WireGuard";
|
|
|
|
homepage = https://git.zx2c4.com/wireguard-go/about/;
|
|
|
|
license = licenses.gpl2;
|
2018-06-09 05:39:43 +02:00
|
|
|
maintainers = with maintainers; [ kirelagin yegortimoshenko zx2c4 ];
|
2018-05-22 02:52:47 +02:00
|
|
|
platforms = platforms.darwin;
|
2018-05-19 10:15:26 +02:00
|
|
|
};
|
|
|
|
}
|