tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
eclipse-cdt (plugin): init at 8.7.0
Bjørn Forsman
10 years ago
b56e9bc9
7a0980e5
+19
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
eclipse
plugins.nix
+19
pkgs/applications/editors/eclipse/plugins.nix
reviewed
···
127
127
};
128
128
};
129
129
130
130
+
cdt = buildEclipseUpdateSite rec {
131
131
+
name = "cdt-${version}";
132
132
+
version = "8.7.0";
133
133
+
134
134
+
src = fetchzip {
135
135
+
stripRoot = false;
136
136
+
url = "http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/tools/cdt/releases/8.7/${name}.zip";
137
137
+
sha256 = "0qpcjcl6n98x7ys4qz8p1x5hhk2ydrgh8w3r1kqk0zc7liqrx7vg";
138
138
+
};
139
139
+
140
140
+
meta = with stdenv.lib; {
141
141
+
homepage = https://eclipse.org/cdt/;
142
142
+
description = "C/C++ development tooling";
143
143
+
license = licenses.epl10;
144
144
+
platforms = platforms.all;
145
145
+
maintainers = [ maintainers.bjornfor ];
146
146
+
};
147
147
+
};
148
148
+
130
149
checkstyle = buildEclipseUpdateSite rec {
131
150
name = "checkstyle-${version}";
132
151
version = "6.5.0.201504121610";