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
@ -3,7 +3,7 @@
|
|||||||
, glib, gtk, libXtst, jre
|
, glib, gtk, libXtst, jre
|
||||||
, webkitgtk2 ? null # for internal web browser
|
, webkitgtk2 ? null # for internal web browser
|
||||||
, buildEnv, writeText, runCommand
|
, buildEnv, writeText, runCommand
|
||||||
, recurseIntoAttrs, callPackage
|
, callPackage
|
||||||
}:
|
}:
|
||||||
|
|
||||||
assert stdenv ? glibc;
|
assert stdenv ? glibc;
|
||||||
@ -388,6 +388,6 @@ in {
|
|||||||
ln -s ${eclipse}/share $out/
|
ln -s ${eclipse}/share $out/
|
||||||
'';
|
'';
|
||||||
|
|
||||||
plugins = recurseIntoAttrs (callPackage ./plugins.nix { });
|
plugins = callPackage ./plugins.nix { };
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user