nixpkgs-suyu/pkgs/tools/networking/wireguard-go/default.nix

29 lines
829 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchzip }:
2018-05-19 10:15:26 +02:00
buildGoPackage rec {
name = "wireguard-go-${version}";
version = "0.0.20180531";
2018-05-19 10:15:26 +02:00
goPackagePath = "git.zx2c4.com/wireguard-go";
2018-05-19 10:15:26 +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";
sha256 = "1vs11kr5a2s99v0g7079nfrfvmjfh1p2lnkj2icjyn2cb0s1vqiy";
2018-05-19 10:15:26 +02:00
};
goDeps = ./deps.nix;
postPatch = ''
2018-05-19 10:15:26 +02:00
# 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;
maintainers = with maintainers; [ kirelagin zx2c4 ];
platforms = platforms.darwin;
2018-05-19 10:15:26 +02:00
};
}