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 = {
|
passthru = {
|
||||||
inherit version modDirVersion kernelPatches;
|
inherit version modDirVersion kernelPatches;
|
||||||
# Combine the `features' attribute sets of all the kernel patches.
|
# 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;
|
builder = ./builder.sh;
|
||||||
@ -133,7 +133,6 @@ stdenv.mkDerivation {
|
|||||||
" (with patches: "
|
" (with patches: "
|
||||||
+ lib.concatStrings (lib.intersperse ", " (map (x: x.name) kernelPatches))
|
+ lib.concatStrings (lib.intersperse ", " (map (x: x.name) kernelPatches))
|
||||||
+ ")");
|
+ ")");
|
||||||
inherit version;
|
|
||||||
license = "GPLv2";
|
license = "GPLv2";
|
||||||
homepage = http://www.kernel.org/;
|
homepage = http://www.kernel.org/;
|
||||||
maintainers = [
|
maintainers = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user