mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
linux: Use concatStringsSep
This commit is contained in:
parent
968b866dcc
commit
6d8c1fe01c
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ let
|
|||
"The Linux kernel" +
|
||||
(if kernelPatches == [] then "" else
|
||||
" (with patches: "
|
||||
+ stdenv.lib.concatStrings (stdenv.lib.intersperse ", " (map (x: x.name) kernelPatches))
|
||||
+ stdenv.lib.concatStringsSep ", " (map (x: x.name) kernelPatches)
|
||||
+ ")");
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
homepage = https://www.kernel.org/;
|
||||
|
|
Loading…
Reference in a new issue