From 0bbaba47e9a45d7cb802031461be8caaf0f3a03d Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Thu, 30 Jul 2015 23:36:14 +0200 Subject: [PATCH] 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. --- pkgs/applications/editors/eclipse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix index b3b9d273257..7d543c4ed55 100644 --- a/pkgs/applications/editors/eclipse/default.nix +++ b/pkgs/applications/editors/eclipse/default.nix @@ -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 { }; }