eclipse: less heavy comments

+10 -12
+10 -12
pkgs/applications/editors/eclipse/default.nix
··· 12 12 13 13 buildEclipse = callPackage ./build-eclipse.nix { }; 14 14 15 - 16 - ################### Eclipse CPP ###################################################################################### 15 + ### Eclipse CPP 17 16 18 17 eclipse-cpp-46 = buildEclipse { 19 18 name = "eclipse-cpp-4.6.0"; ··· 49 48 }; 50 49 eclipse_cpp_37 = eclipse-cpp-37; # backward compatibility, added 2016-01-30 51 50 52 - 53 - ################### Eclipse Modeling ################################################################################ 51 + ### Eclipse Modeling 54 52 55 53 eclipse-modeling-46 = buildEclipse { 56 54 name = "eclipse-modeling-4.6"; ··· 85 83 }; 86 84 eclipse_modeling_36 = eclipse-modeling-36; # backward compatibility, added 2016-01-30 87 85 88 - 89 - ################### Eclipse Platform ################################################################################# 86 + ### Eclipse Platform 90 87 91 88 eclipse-platform = eclipse-platform-46; 92 89 ··· 105 102 }; 106 103 }; 107 104 108 - 109 - ################### Eclipse Scala SDK ################################################################################ 105 + ### Eclipse Scala SDK 110 106 111 107 eclipse-scala-sdk-441 = buildEclipse { 112 108 name = "eclipse-scala-sdk-4.4.1"; ··· 124 120 }; 125 121 }; 126 122 127 - 128 - ################### Eclipse SDK ###################################################################################### 123 + ### Eclipse SDK 129 124 130 125 eclipse-sdk-46 = buildEclipse { 131 126 name = "eclipse-sdk-4.6"; ··· 158 153 }; 159 154 eclipse_sdk_37 = eclipse-sdk-37; # backward compatibility, added 2016-01-30 160 155 156 + ### Environments 161 157 162 - ################### Eclipse with Plugins ############################################################################# 163 - 158 + # Function that assembles a complete Eclipse environment from an 159 + # Eclipse package and list of Eclipse plugins. 164 160 eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }: 165 161 let 166 162 # Gather up the desired plugins. ··· 194 190 195 191 ln -s ${eclipse}/share $out/ 196 192 ''; 193 + 194 + ### Plugins 197 195 198 196 plugins = callPackage ./plugins.nix { }; 199 197