Linux: Set passthru attr to contain full passthru
This fixes #1566, thanks @wizeman Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
d18bc25b95
commit
fd999ed570
|
@ -120,6 +120,8 @@ let
|
||||||
features = lib.fold (x: y: (x.features or {}) // y) features kernelPatches;
|
features = lib.fold (x: y: (x.features or {}) // y) features kernelPatches;
|
||||||
|
|
||||||
meta = kernel.meta // extraMeta;
|
meta = kernel.meta // extraMeta;
|
||||||
|
|
||||||
|
passthru = kernel.passthru // (removeAttrs passthru [ "passthru" ]);
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeDrv = lib.addPassthru kernel.nativeDrv passthru;
|
nativeDrv = lib.addPassthru kernel.nativeDrv passthru;
|
||||||
|
|
Loading…
Reference in New Issue