Merge pull request #25127 from zx2c4/patch-3

wireguard: 0.0.20170409 -> 0.0.20170421
This commit is contained in:
Jörg Thalheim 2017-04-24 19:28:23 +02:00 committed by GitHub
commit 7c44277d38

@ -1,23 +1,23 @@
{ stdenv, fetchurl, libmnl, kernel ? null }:
# module requires Linux >= 3.18 https://www.wireguard.io/install/#kernel-requirements
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.18";
# module requires Linux >= 3.10 https://www.wireguard.io/install/#kernel-requirements
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.10";
let
name = "wireguard-${version}";
version = "0.0.20170409";
version = "0.0.20170421";
src = fetchurl {
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
sha256 = "065vxxvdsnxk9paqbafi0c622b4qayfh3ps6zzb853qp2i6kniri";
sha256 = "03c82af774224cd171d000ee4a519b5e474cc6842ac04967773cf77b26750000";
};
meta = with stdenv.lib; {
homepage = https://www.wireguard.io/;
downloadPage = https://git.zx2c4.com/WireGuard/refs/;
description = "A prerelease of an experimental VPN tunnel which is not to be depended upon for security";
maintainers = with maintainers; [ ericsagnes ];
maintainers = with maintainers; [ ericsagnes mic92 ];
license = licenses.gpl2;
platforms = platforms.linux;
};
@ -35,6 +35,8 @@ let
KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
INSTALL_MOD_PATH = "\${out}";
NIX_CFLAGS = ["-Wno-error=cpp"];
buildPhase = "make module";
};