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:
Shea Levy 2014-01-21 21:06:27 -05:00
parent d18bc25b95
commit fd999ed570

View file

@ -120,6 +120,8 @@ let
features = lib.fold (x: y: (x.features or {}) // y) features kernelPatches;
meta = kernel.meta // extraMeta;
passthru = kernel.passthru // (removeAttrs passthru [ "passthru" ]);
};
nativeDrv = lib.addPassthru kernel.nativeDrv passthru;