lol

eclipse-cdt (plugin): init at 8.7.0

+19
+19
pkgs/applications/editors/eclipse/plugins.nix
··· 127 127 }; 128 128 }; 129 129 130 + cdt = buildEclipseUpdateSite rec { 131 + name = "cdt-${version}"; 132 + version = "8.7.0"; 133 + 134 + src = fetchzip { 135 + stripRoot = false; 136 + url = "http://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/tools/cdt/releases/8.7/${name}.zip"; 137 + sha256 = "0qpcjcl6n98x7ys4qz8p1x5hhk2ydrgh8w3r1kqk0zc7liqrx7vg"; 138 + }; 139 + 140 + meta = with stdenv.lib; { 141 + homepage = https://eclipse.org/cdt/; 142 + description = "C/C++ development tooling"; 143 + license = licenses.epl10; 144 + platforms = platforms.all; 145 + maintainers = [ maintainers.bjornfor ]; 146 + }; 147 + }; 148 + 130 149 checkstyle = buildEclipseUpdateSite rec { 131 150 name = "checkstyle-${version}"; 132 151 version = "6.5.0.201504121610";