linux: Use concatStringsSep
This commit is contained in:
parent
968b866dcc
commit
6d8c1fe01c
@ -236,7 +236,7 @@ let
|
|||||||
"The Linux kernel" +
|
"The Linux kernel" +
|
||||||
(if kernelPatches == [] then "" else
|
(if kernelPatches == [] then "" else
|
||||||
" (with patches: "
|
" (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;
|
license = stdenv.lib.licenses.gpl2;
|
||||||
homepage = https://www.kernel.org/;
|
homepage = https://www.kernel.org/;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user