nixpkgs/pkgs/tools/networking/wireguard-go/default.nix
2018-05-19 11:19:33 +03:00

28 lines
785 B
Nix

{ stdenv, buildGoPackage, fetchurl }:
buildGoPackage rec {
name = "wireguard-go-${version}";
version = "0.0.20180514";
goPackagePath = "wireguard-go";
src = fetchurl {
url = "https://git.zx2c4.com/wireguard-go/snapshot/wireguard-go-${version}.tar.xz";
sha256 = "1bn49a67m2ab0l9lq3zh2mfbbppmyg34klqi3069sjn6lg2hlajs";
};
goDeps = ./deps.nix;
patchPhase = ''
# Replace local imports so that go tools do not trip on them
find . -name '*.go' -exec sed -i '/import (/,/)/s@"./@"${goPackagePath}/@' {} \;
'';
meta = with stdenv.lib; {
description = "Userspace Go implementation of WireGuard";
homepage = https://git.zx2c4.com/wireguard-go/about/;
license = licenses.gpl2;
platforms = with platforms; linux ++ darwin ++ windows;
};
}