2016-08-14 13:47:16 +03:00
|
|
|
{ stdenv, fetchurl, libmnl, kernel ? null }:
|
2016-07-11 19:05:23 +03:00
|
|
|
|
2017-04-23 00:34:38 +03:00
|
|
|
# module requires Linux >= 3.10 https://www.wireguard.io/install/#kernel-requirements
|
|
|
|
assert kernel != null -> stdenv.lib.versionAtLeast kernel.version "3.10";
|
2016-08-11 01:25:57 +03:00
|
|
|
|
2016-07-13 22:15:11 +03:00
|
|
|
let
|
2016-12-15 00:09:35 +03:00
|
|
|
name = "wireguard-${version}";
|
2016-07-13 22:15:11 +03:00
|
|
|
|
2017-08-11 22:04:17 +03:00
|
|
|
version = "0.0.20170810";
|
2016-07-11 19:05:23 +03:00
|
|
|
|
2016-08-14 13:47:16 +03:00
|
|
|
src = fetchurl {
|
2016-12-15 00:09:35 +03:00
|
|
|
url = "https://git.zx2c4.com/WireGuard/snapshot/WireGuard-${version}.tar.xz";
|
2017-08-11 22:04:17 +03:00
|
|
|
sha256 = "ab96230390625aad6f4816fa23aef6e9f7fee130f083d838919129ff12089bf7";
|
2016-07-11 19:05:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-11 22:04:17 +03:00
|
|
|
homepage = https://www.wireguard.com/;
|
2016-08-14 13:47:16 +03:00
|
|
|
downloadPage = https://git.zx2c4.com/WireGuard/refs/;
|
2017-02-14 16:19:19 +03:00
|
|
|
description = "A prerelease of an experimental VPN tunnel which is not to be depended upon for security";
|
2017-06-13 16:55:56 +03:00
|
|
|
maintainers = with maintainers; [ ericsagnes mic92 zx2c4 ];
|
2016-08-14 13:47:16 +03:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2016-07-11 19:05:23 +03:00
|
|
|
};
|
2016-07-13 22:15:11 +03:00
|
|
|
|
|
|
|
module = stdenv.mkDerivation {
|
|
|
|
inherit src meta name;
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
cd src
|
|
|
|
sed -i '/depmod/,+1d' Makefile
|
|
|
|
'';
|
|
|
|
|
2016-07-21 03:01:20 +03:00
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
|
2016-07-13 22:15:11 +03:00
|
|
|
KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
|
|
|
INSTALL_MOD_PATH = "\${out}";
|
|
|
|
|
2017-04-23 14:29:43 +03:00
|
|
|
NIX_CFLAGS = ["-Wno-error=cpp"];
|
|
|
|
|
2016-07-13 22:15:11 +03:00
|
|
|
buildPhase = "make module";
|
|
|
|
};
|
|
|
|
|
|
|
|
tools = stdenv.mkDerivation {
|
|
|
|
inherit src meta name;
|
|
|
|
|
|
|
|
preConfigure = "cd src";
|
|
|
|
|
|
|
|
buildInputs = [ libmnl ];
|
|
|
|
|
|
|
|
makeFlags = [
|
2017-01-05 05:59:24 +03:00
|
|
|
"WITH_BASHCOMPLETION=yes"
|
|
|
|
"WITH_WGQUICK=yes"
|
|
|
|
"WITH_SYSTEMDUNITS=yes"
|
2016-07-13 22:15:11 +03:00
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX=/"
|
|
|
|
"-C" "tools"
|
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = "make tools";
|
|
|
|
};
|
|
|
|
|
|
|
|
in if kernel == null
|
|
|
|
then tools
|
|
|
|
else module
|