summary refs log tree commit diff
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-01-21 21:12:58 -0500
committerShea Levy <shea@shealevy.com>2014-01-21 21:12:58 -0500
commitcb9cc87a397f9705559dd566299be665b0457e1c (patch)
treed2dffa4f646be7e90deb9397d5f63ab1a21f2969
parentfd999ed57063786b8239566368cbc94e0843c5f8 (diff)
downloadnixlib-cb9cc87a397f9705559dd566299be665b0457e1c.tar
nixlib-cb9cc87a397f9705559dd566299be665b0457e1c.tar.gz
nixlib-cb9cc87a397f9705559dd566299be665b0457e1c.tar.bz2
nixlib-cb9cc87a397f9705559dd566299be665b0457e1c.tar.lz
nixlib-cb9cc87a397f9705559dd566299be665b0457e1c.tar.xz
nixlib-cb9cc87a397f9705559dd566299be665b0457e1c.tar.zst
nixlib-cb9cc87a397f9705559dd566299be665b0457e1c.zip
kernel.passthru: Don't include meta to be consistent with stdenv.mkDerivation
Signed-off-by: Shea Levy <shea@shealevy.com>
-rw-r--r--pkgs/os-specific/linux/kernel/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/kernel/generic.nix b/pkgs/os-specific/linux/kernel/generic.nix
index 266e3fbd55b1..ff0ca0050fbc 100644
--- a/pkgs/os-specific/linux/kernel/generic.nix
+++ b/pkgs/os-specific/linux/kernel/generic.nix
@@ -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;