From a8584cf8dced32247fd5f064f7cc3185fd283e74 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 3 May 2023 07:25:21 +0000 Subject: [PATCH] linux-megous: fix eval error from aliased `kernelPatches` --- pkgs/additional/linux-megous/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/additional/linux-megous/default.nix b/pkgs/additional/linux-megous/default.nix index 5c233d8c..583c4303 100644 --- a/pkgs/additional/linux-megous/default.nix +++ b/pkgs/additional/linux-megous/default.nix @@ -12,6 +12,7 @@ with lib; let + kernelPatches' = kernelPatches; base = "6.2.0"; # set to empty if not a release candidate rc = "-rc5"; @@ -25,8 +26,8 @@ in buildLinux (args // rec { extraMeta.branch = versions.majorMinor version; kernelPatches = [ - kernelPatches.bridge_stp_helper - kernelPatches.request_key_helper + kernelPatches'.bridge_stp_helper + kernelPatches'.request_key_helper ]; src = fetchFromGitHub {