mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 14:43:47 +00:00
partial revert of f3719756b5
This commit is contained in:
parent
5c53841e58
commit
c200f5e411
@ -409,11 +409,10 @@ stdenv.mkDerivation ({
|
|||||||
meta = {
|
meta = {
|
||||||
description =
|
description =
|
||||||
"The Linux kernel" +
|
"The Linux kernel" +
|
||||||
(lib.optionalString (kernelPatches != []) (
|
(if kernelPatches == [] then "" else
|
||||||
" (with patches: "
|
" (with patches: "
|
||||||
+ lib.concatStringsSep ", " (map (x: x.name) kernelPatches)
|
+ lib.concatStringsSep ", " (map (x: x.name) kernelPatches)
|
||||||
+ ")"
|
+ ")");
|
||||||
));
|
|
||||||
license = lib.licenses.gpl2Only;
|
license = lib.licenses.gpl2Only;
|
||||||
homepage = "https://www.kernel.org/";
|
homepage = "https://www.kernel.org/";
|
||||||
maintainers = lib.teams.linux-kernel.members ++ [
|
maintainers = lib.teams.linux-kernel.members ++ [
|
||||||
|
Loading…
Reference in New Issue
Block a user