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