eclipses: do not recurse into plugins.nix

It does not really make sense to install the plugin packages directly as
they are intended for use with `eclipseWithPlugins`. Therefore it is
best not to present them to users as such.
This commit is contained in:
Robert Helgesson 2015-07-30 23:36:14 +02:00 committed by Bjørn Forsman
parent 4134d6b5b9
commit 0bbaba47e9

View file

@ -3,7 +3,7 @@
, glib, gtk, libXtst, jre
, webkitgtk2 ? null # for internal web browser
, buildEnv, writeText, runCommand
, recurseIntoAttrs, callPackage
, callPackage
}:
assert stdenv ? glibc;
@ -388,6 +388,6 @@ in {
ln -s ${eclipse}/share $out/
'';
plugins = recurseIntoAttrs (callPackage ./plugins.nix { });
plugins = callPackage ./plugins.nix { };
}