summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2016-10-21 10:44:31 +0200
committerRobert Helgesson <robert@rycee.net>2016-10-21 10:44:31 +0200
commit9b2fbb776b5a59be275271a6b45903b57f9cc3f0 (patch)
treeac07266a797d96548e58a902a96560b05fa33946
parent542b737d86ee37a646d7b3a1da71fce953406ae5 (diff)
downloadnixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.tar
nixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.tar.gz
nixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.tar.bz2
nixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.tar.lz
nixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.tar.xz
nixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.tar.zst
nixpkgs-9b2fbb776b5a59be275271a6b45903b57f9cc3f0.zip
eclipse: less heavy comments
-rw-r--r--pkgs/applications/editors/eclipse/default.nix22
1 files changed, 10 insertions, 12 deletions
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index 9ed9fcc34cf..48e6a34d8a5 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -12,8 +12,7 @@ rec {
 
   buildEclipse = callPackage ./build-eclipse.nix { };
 
-
-  ################### Eclipse CPP ######################################################################################
+  ### Eclipse CPP
 
   eclipse-cpp-46 = buildEclipse {
     name = "eclipse-cpp-4.6.0";
@@ -49,8 +48,7 @@ rec {
   };
   eclipse_cpp_37 = eclipse-cpp-37; # backward compatibility, added 2016-01-30
 
-
-  ################### Eclipse Modeling  ################################################################################
+  ### Eclipse Modeling
 
   eclipse-modeling-46 = buildEclipse {
     name = "eclipse-modeling-4.6";
@@ -85,8 +83,7 @@ rec {
   };
   eclipse_modeling_36 = eclipse-modeling-36; # backward compatibility, added 2016-01-30
 
-
-  ################### Eclipse Platform #################################################################################
+  ### Eclipse Platform
 
   eclipse-platform = eclipse-platform-46;
 
@@ -105,8 +102,7 @@ rec {
     };
   };
 
-
-  ################### Eclipse Scala SDK ################################################################################
+  ### Eclipse Scala SDK
 
   eclipse-scala-sdk-441 = buildEclipse {
     name = "eclipse-scala-sdk-4.4.1";
@@ -124,8 +120,7 @@ rec {
         };
   };
 
-
-  ################### Eclipse SDK ######################################################################################
+  ### Eclipse SDK
 
   eclipse-sdk-46 = buildEclipse {
     name = "eclipse-sdk-4.6";
@@ -158,9 +153,10 @@ rec {
   };
   eclipse_sdk_37 = eclipse-sdk-37; # backward compatibility, added 2016-01-30
 
+  ### Environments
 
-  ################### Eclipse with Plugins #############################################################################
-
+  # Function that assembles a complete Eclipse environment from an
+  # Eclipse package and list of Eclipse plugins.
   eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }:
     let
       # Gather up the desired plugins.
@@ -195,6 +191,8 @@ rec {
         ln -s ${eclipse}/share $out/
       '';
 
+  ### Plugins
+
   plugins = callPackage ./plugins.nix { };
 
 }