lol

Merge pull request #4484 from edwtjo/idea-updates

Idea updates

+10 -10
+10 -10
pkgs/applications/editors/idea/default.nix
··· 17 17 desktopItem = makeDesktopItem { 18 18 name = loName; 19 19 exec = loName; 20 - comment = meta.longDescription; 20 + comment = lib.replaceChars ["\n"] [" "] meta.longDescription; 21 21 desktopName = product; 22 22 genericName = meta.description; 23 23 categories = "Application;Development;"; ··· 147 147 148 148 android-studio = buildAndroidStudio rec { 149 149 name = "android-studio-${version}"; 150 - version = "0.8.10"; 151 - build = "135.1428667"; 150 + version = "0.8.12"; 151 + build = "135.1503853"; 152 152 description = "Android development environment based on IntelliJ IDEA"; 153 153 license = stdenv.lib.licenses.asl20; 154 154 src = fetchurl { 155 155 url = "https://dl.google.com/dl/android/studio/ide-zips/${version}" + 156 156 "/android-studio-ide-${build}-linux.zip"; 157 - sha256 = "5736a92ffda24233026ff45a47f1b4f9567ba40347cfa0c9f351112e729b5401"; 157 + sha256 = "225c8b2f90b9159c465eae5797132350660994184a568c631d4383313a510695"; 158 158 }; 159 159 }; 160 160 161 161 idea-community = buildIdea rec { 162 162 name = "idea-community-${version}"; 163 - version = "13.1.4b"; 164 - build = "IC-135.1230"; 163 + version = "13.1.5"; 164 + build = "IC-135.1289"; 165 165 description = "Integrated Development Environment (IDE) by Jetbrains, community edition"; 166 166 license = stdenv.lib.licenses.asl20; 167 167 src = fetchurl { 168 168 url = "http://download-ln.jetbrains.com/idea/ideaIC-${version}.tar.gz"; 169 - sha256 = "8b4ee25fd2934e06b87230b50e1474183ed4b331c1626a7fee69b96294d9616d"; 169 + sha256 = "e08b9adad0ed9aa62a43f3026a1b499d1663710314d00a3bec2e171a6c375f09"; 170 170 }; 171 171 }; 172 172 173 173 idea-ultimate = buildIdea rec { 174 174 name = "idea-ultimate-${version}"; 175 - version = "13.1.4b"; 176 - build = "IU-135.1230"; 175 + version = "13.1.5"; 176 + build = "IU-135.1289"; 177 177 description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license"; 178 178 license = stdenv.lib.licenses.unfree; 179 179 src = fetchurl { 180 180 url = "http://download-ln.jetbrains.com/idea/ideaIU-${version}.tar.gz"; 181 - sha256 = "84660d97c9c3e4e7cfd6c2708f4685dc7322157f1e1c2888feac64df119f0606"; 181 + sha256 = "0800b1ffc135f884e46f1004289fb75850148d705afc447d3374cfd281c231a2"; 182 182 }; 183 183 }; 184 184