idea updates: idea-{community,ultimate}: 14.0.2 -> 14.0.3 android-studio: 1.0.2 -> 1.1.0b2 clion: eap bump

+11 -11
+11 -11
pkgs/applications/editors/idea/default.nix
··· 202 203 android-studio = buildAndroidStudio rec { 204 name = "android-studio-${version}"; 205 - version = "1.0.2"; 206 - build = "135.1653844"; 207 description = "Android development environment based on IntelliJ IDEA"; 208 license = stdenv.lib.licenses.asl20; 209 src = fetchurl { 210 url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" + 211 "/android-studio-ide-${build}-linux.zip"; 212 - sha256 = "0y20gp5444c2lwyzhlppjpkb657qbgpskj31lwyfhx6xyqy83159"; 213 }; 214 }; 215 216 clion = buildClion rec { 217 name = "clion"; 218 version = "eap"; 219 - build = "140.1221.2"; 220 description = "C/C++ IDE. New. Intelligent. Cross-platform."; 221 license = stdenv.lib.licenses.unfree; 222 src = fetchurl { 223 url = "http://download.jetbrains.com/cpp/${name}-${build}.tar.gz"; 224 - sha256 = "0gf809plnw89dgn47j6hsh5nv0bpdynjnl1rg8wv7jaz2zx9bqcg"; 225 }; 226 }; 227 228 idea-community = buildIdea rec { 229 name = "idea-community-${version}"; 230 - version = "14.0.2"; 231 - build = "IC-139.659"; 232 description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; 233 license = stdenv.lib.licenses.asl20; 234 src = fetchurl { 235 url = "http://download-ln.jetbrains.com/idea/ideaIC-${version}.tar.gz"; 236 - sha256 = "0g8f66bdxdmsbv2r1jc308by5ca92ifczprf0gwy5bs2xsvxxwlf"; 237 }; 238 }; 239 240 idea-ultimate = buildIdea rec { 241 name = "idea-ultimate-${version}"; 242 - version = "14.0.2"; 243 - build = "IU-139.659"; 244 description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; 245 license = stdenv.lib.licenses.unfree; 246 src = fetchurl { 247 url = "http://download-ln.jetbrains.com/idea/ideaIU-${version}.tar.gz"; 248 - sha256 = "0swd3lyrlcdlsgp350sa741bkmndlck1ss429f9faf3hm4s2y0k5"; 249 }; 250 }; 251
··· 202 203 android-studio = buildAndroidStudio rec { 204 name = "android-studio-${version}"; 205 + version = "1.1.0b2"; 206 + build = "135.1711524"; 207 description = "Android development environment based on IntelliJ IDEA"; 208 license = stdenv.lib.licenses.asl20; 209 src = fetchurl { 210 url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" + 211 "/android-studio-ide-${build}-linux.zip"; 212 + sha256 = "0pkmyk7ipd4bfbryhanak5mq3x8ix1yv4czx8yi9vdpa34b6pnkw"; 213 }; 214 }; 215 216 clion = buildClion rec { 217 name = "clion"; 218 version = "eap"; 219 + build = "140.1740.3"; 220 description = "C/C++ IDE. New. Intelligent. Cross-platform."; 221 license = stdenv.lib.licenses.unfree; 222 src = fetchurl { 223 url = "http://download.jetbrains.com/cpp/${name}-${build}.tar.gz"; 224 + sha256 = "1hpsq37hq61id836wg5j6l3xapln6qdkqa10r3ig2p1rs2hq7i9y"; 225 }; 226 }; 227 228 idea-community = buildIdea rec { 229 name = "idea-community-${version}"; 230 + version = "14.0.3"; 231 + build = "IC-139.1117"; 232 description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; 233 license = stdenv.lib.licenses.asl20; 234 src = fetchurl { 235 url = "http://download-ln.jetbrains.com/idea/ideaIC-${version}.tar.gz"; 236 + sha256 = "01wcpzdahkh3li2l3k2bgirnlp7hdxk9y1kyrxc3d9d1nazq8wqn"; 237 }; 238 }; 239 240 idea-ultimate = buildIdea rec { 241 name = "idea-ultimate-${version}"; 242 + version = "14.0.3"; 243 + build = "IU-139.1117"; 244 description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; 245 license = stdenv.lib.licenses.unfree; 246 src = fetchurl { 247 url = "http://download-ln.jetbrains.com/idea/ideaIU-${version}.tar.gz"; 248 + sha256 = "1zkqigdh9l1f3mjjvxsp7b7vc93v5ylvxa1dfpclzmfbzna7h69s"; 249 }; 250 }; 251