mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
linux: Don't put the kernel version in meta
This commit is contained in:
parent
2238a23352
commit
dccbdcf520
@ -69,7 +69,7 @@ stdenv.mkDerivation {
|
||||
passthru = {
|
||||
inherit version modDirVersion kernelPatches;
|
||||
# Combine the `features' attribute sets of all the kernel patches.
|
||||
features = lib.fold (x: y: (if x ? features then x.features else {}) // y) features kernelPatches;
|
||||
features = lib.fold (x: y: (x.features or {}) // y) features kernelPatches;
|
||||
};
|
||||
|
||||
builder = ./builder.sh;
|
||||
@ -133,7 +133,6 @@ stdenv.mkDerivation {
|
||||
" (with patches: "
|
||||
+ lib.concatStrings (lib.intersperse ", " (map (x: x.name) kernelPatches))
|
||||
+ ")");
|
||||
inherit version;
|
||||
license = "GPLv2";
|
||||
homepage = http://www.kernel.org/;
|
||||
maintainers = [
|
||||
|
Loading…
Reference in New Issue
Block a user