about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2015-08-26 22:50:03 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2015-08-26 22:54:23 +0200
commit5c8a1fe5e123dffb1615f7400e44ae5624dfdde1 (patch)
treef107c39067aeb9e03dbeeb25b3a2cb035e6b54da
parent771b1a535851a39999dcb9365ea6f084e755ce6a (diff)
eclipse: name plugins "eclipse-plugin-${name}"
Instead of "eclipse-${name}". The latter is slightly confusing since
there are non-plugin eclipse packages named "eclipse-${name}", like
eclipse-modeling or eclipse-cpp.
-rw-r--r--pkgs/applications/editors/eclipse/plugins.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index 8b663edccd07c..6f09aa481e1dd 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -9,7 +9,7 @@ rec {
                             , passthru ? {}
                             , ... } @ attrs:
     stdenv.mkDerivation (attrs // {
-      name = "eclipse-" + name;
+      name = "eclipse-plugin-" + name;
 
       buildInputs = buildInputs ++ [ unzip ];