Merge pull request #25127 from zx2c4/patch-3
wireguard: 0.0.20170409 -> 0.0.20170421
This commit is contained in:
commit
7c44277d38
@ -1,23 +1,23 @@
|
|||||||
{ stdenv, fetchurl, libmnl, kernel ? null }:
|
{ stdenv, fetchurl, libmnl, kernel ? null }:
|
||||||
|
|
||||||
# module requires Linux >= 3.18 https://www.wireguard.io/install/#kernel-requirements
|
# module requires Linux >= 3.10 https://www.wireguard.io/install/#kernel-requirements
|
||||||
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.18";
|
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.10";
|
||||||
|
|
||||||
let
|
let
|
||||||
name = "wireguard-${version}";
|
name = "wireguard-${version}";
|
||||||
|
|
||||||
version = "0.0.20170409";
|
version = "0.0.20170421";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
|
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
|
||||||
sha256 = "065vxxvdsnxk9paqbafi0c622b4qayfh3ps6zzb853qp2i6kniri";
|
sha256 = "03c82af774224cd171d000ee4a519b5e474cc6842ac04967773cf77b26750000";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://www.wireguard.io/;
|
homepage = https://www.wireguard.io/;
|
||||||
downloadPage = https://git.zx2c4.com/WireGuard/refs/;
|
downloadPage = https://git.zx2c4.com/WireGuard/refs/;
|
||||||
description = "A prerelease of an experimental VPN tunnel which is not to be depended upon for security";
|
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;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
@ -35,6 +35,8 @@ let
|
|||||||
KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
||||||
INSTALL_MOD_PATH = "\${out}";
|
INSTALL_MOD_PATH = "\${out}";
|
||||||
|
|
||||||
|
NIX_CFLAGS = ["-Wno-error=cpp"];
|
||||||
|
|
||||||
buildPhase = "make module";
|
buildPhase = "make module";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user