Files
nixext-tq/linux_653.nix
2023-09-14 14:05:48 +02:00

26 lines
698 B
Nix

{ lib, fetchurl, buildLinux, kernelPatches, ... } @ args:
with lib;
with lib.kernel;
buildLinux (args // rec {
version = "6.5.3";
# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = versions.pad 3 version;
# branchVersion needs to be x.y
extraMeta.branch = versions.majorMinor version;
src = fetchurl {
url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz";
hash = "sha256-TKwT97F72Nz5AyrWj5Ejq1MT1pjJ9ZQWBDFlFQdj608=";
};
structuredExtraConfig.VIDEO_STK1160_COMMON = lib.mkForce (option no);
kernelPatches = with args.kernelPatches; [
bridge_stp_helper
request_key_helper
];
} // (args.argsOverride or { }))