kernel.passthru: Don't include meta to be consistent with stdenv.mkDerivation

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-01-21 21:12:58 -05:00
parent fd999ed570
commit cb9cc87a39

View File

@ -121,7 +121,7 @@ let
meta = kernel.meta // extraMeta;
passthru = kernel.passthru // (removeAttrs passthru [ "passthru" ]);
passthru = kernel.passthru // (removeAttrs passthru [ "passthru" "meta" ]);
};
nativeDrv = lib.addPassthru kernel.nativeDrv passthru;