wireguard: 2016-10-25 -> 0.0.20161110

This commit is contained in:
Jörg Thalheim 2016-11-10 23:56:50 +01:00
parent a4f2d339fe
commit c0f9bc9b4e
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA

View file

@ -2,17 +2,15 @@
# module requires Linux >= 4.1 https://www.wireguard.io/install/#kernel-requirements # module requires Linux >= 4.1 https://www.wireguard.io/install/#kernel-requirements
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "4.1"; assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "4.1";
# module is incompatible with the PaX constification plugin
assert kernel != null -> !(kernel.features.grsecurity or false);
let let
name = "wireguard-unstable-${version}"; name = "wireguard-experimental-${version}";
version = "2016-10-25"; version = "0.0.20161110";
src = fetchurl { src = fetchurl {
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-experimental-0.0.20161025.tar.xz"; url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-experimental-${version}.tar.xz";
sha256 = "09rhap3dzb8rcq1a1af9inf1qz7161yghafbgpbnd9dg016vhgs3"; sha256 = "13z416k64gnkp9248h846h40ph83ms7l9mm9b9xpki17j5q7hm10";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {