summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific/linux/kernel/manual-config.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/kernel/manual-config.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/manual-config.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix
index d7ea4ac2c498..1f9039136f4c 100644
--- a/pkgs/os-specific/linux/kernel/manual-config.nix
+++ b/pkgs/os-specific/linux/kernel/manual-config.nix
@@ -397,10 +397,11 @@ stdenv.mkDerivation ({
meta = {
description =
"The Linux kernel" +
- (if kernelPatches == [] then "" else
+ (lib.optionalString (kernelPatches != []) (
" (with patches: "
+ lib.concatStringsSep ", " (map (x: x.name) kernelPatches)
- + ")");
+ + ")"
+ ));
license = lib.licenses.gpl2Only;
homepage = "https://www.kernel.org/";
maintainers = lib.teams.linux-kernel.members ++ [