4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ lib, stdenv, fetchzip, kernel, perl, wireguard-tools, bc }:
|
|
|
|
# module requires Linux >= 3.10 https://www.wireguard.io/install/#kernel-requirements
|
|
assert stdenv.lib.versionAtLeast kernel.version "3.10";
|
|
# wireguard upstreamed since 5.6 https://lists.zx2c4.com/pipermail/wireguard/2019-December/004704.html
|
|
assert stdenv.lib.versionOlder kernel.version "5.6";
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wireguard";
|
|
version = "1.0.20201221";
|
|
|
|
src = fetchzip {
|
|
url = "https://git.zx2c4.com/wireguard-linux-compat/snapshot/wireguard-linux-compat-${version}.tar.xz";
|
|
sha256 = "sha256-8RPJEk+6NaJP3LNZYEncLlkdrw2jHxNekKwEr+YpHeQ=";
|
|
};
|
|
|
|
hardeningDisable = [ "pic" ];
|
|
|
|
KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
|
|
|
nativeBuildInputs = [ perl bc ] ++ kernel.moduleBuildDependencies;
|
|
|
|
preBuild = "cd src";
|
|
buildFlags = [ "module" ];
|
|
|
|
INSTALL_MOD_PATH = placeholder "out";
|
|
installFlags = [ "DEPMOD=true" ];
|
|
enableParallelBuilding = true;
|
|
|
|
passthru = {
|
|
# remove this when our kernel comes with native wireguard support
|
|
# and our tests no longer tests this package
|
|
inherit (wireguard-tools) tests;
|
|
};
|
|
|
|
meta = with lib; {
|
|
inherit (wireguard-tools.meta) homepage license maintainers;
|
|
description = "Kernel module for the WireGuard secure network tunnel";
|
|
downloadPage = "https://git.zx2c4.com/wireguard-linux-compat/refs/";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|