tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
idea.idea-{community,ultimate}: 15.0.3 -> 15.0.4
Edward Tjörnhammar
10 years ago
77d11ec5
40c586b7
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
editors
idea
default.nix
+6
-6
pkgs/applications/editors/idea/default.nix
···
185
185
186
186
idea-community = buildIdea rec {
187
187
name = "idea-community-${version}";
188
188
-
version = "15.0.3";
189
189
-
build = "IC-143.1821";
188
188
+
version = "15.0.4";
189
189
+
build = "IC-143.2287";
190
190
description = "Integrated Development Environment (IDE) by Jetbrains, community edition";
191
191
license = stdenv.lib.licenses.asl20;
192
192
src = fetchurl {
193
193
url = "https://download.jetbrains.com/idea/ideaIC-${version}.tar.gz";
194
194
-
sha256 = "15hj4kqlpg3b4xp2v4f4iidascrc8s97mq8022nvbcs879gpajqa";
194
194
+
sha256 = "05kah5cx7x3rlaaxkvbbm7g8jvy9hc38q4jv7j5r9rkxd38fslvn";
195
195
};
196
196
};
197
197
198
198
idea-ultimate = buildIdea rec {
199
199
name = "idea-ultimate-${version}";
200
200
-
version = "15.0.3";
201
201
-
build = "IU-143.1821";
200
200
+
version = "15.0.4";
201
201
+
build = "IU-143.2287";
202
202
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
203
203
license = stdenv.lib.licenses.unfree;
204
204
src = fetchurl {
205
205
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
206
206
-
sha256 = "02v8v2a7p620l4mlk7jqw9sl2455a1nya1dy84y23h9vq20aihlh";
206
206
+
sha256 = "0416y7krrak1q5pb8axskdamy06nfxmn4hj7421j8jaz0nc50dn4";
207
207
};
208
208
};
209
209