Merge pull request #40902 from zx2c4-forks/do-people-actually-use-nix-for-darwin

wireguard: bump version and limit platforms
This commit is contained in:
Yegor Timoshenko 2018-05-22 03:24:12 +03:00 committed by GitHub
commit 643462aef3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -2,13 +2,13 @@
buildGoPackage rec {
name = "wireguard-go-${version}";
version = "0.0.20180514";
version = "0.0.20180519";
goPackagePath = "wireguard-go";
src = fetchzip {
url = "https://git.zx2c4.com/wireguard-go/snapshot/wireguard-go-${version}.tar.xz";
sha256 = "1i1w4vj8w353b92nfhs92k0f7fifrwi067qfmgckdk0kk76nv2id";
sha256 = "d2b0f43679b3559952cf8d244d537903d03699ed7c8a2c1e7fc37ee424e30439";
};
goDeps = ./deps.nix;
@ -23,6 +23,6 @@ buildGoPackage rec {
homepage = https://git.zx2c4.com/wireguard-go/about/;
license = licenses.gpl2;
maintainers = with maintainers; [ kirelagin ];
platforms = with platforms; linux ++ darwin ++ windows;
platforms = with platforms; darwin;
};
}