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:
parent
4134d6b5b9
commit
0bbaba47e9
1 changed files with 2 additions and 2 deletions
|
@ -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 { };
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue