Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fdd28b6fe0ef
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c5d319d6ed4c
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 9, 2017

  1. idea-ultimate: 2017.1.1 -> 2017.1.2

    Changed to using the no-jdk version which is ~80MB smaller since we're using the
    Nix JDK.
    gaqzi committed May 9, 2017
    Copy the full SHA
    5fdc93b View commit details
  2. Merge pull request #25638 from gaqzi/u/idea-ultimate

    idea-ultimate: 2017.1.1 -> 2017.1.2
    Peter Hoeg authored May 9, 2017
    Copy the full SHA
    c5d319d View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/editors/jetbrains/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/editors/jetbrains/default.nix
Original file line number Diff line number Diff line change
@@ -269,12 +269,12 @@ in

idea-ultimate = buildIdea rec {
name = "idea-ultimate-${version}";
version = "2017.1.1";
version = "2017.1.2";
description = "Integrated Development Environment (IDE) by Jetbrains, requires paid license";
license = stdenv.lib.licenses.unfree;
src = fetchurl {
url = "https://download.jetbrains.com/idea/ideaIU-${version}.tar.gz";
sha256 = "18z9kv2nk8fgpns8r4ra39hs4d2v3knnwv9a996wrrbsfc9if8lp";
url = "https://download.jetbrains.com/idea/ideaIU-${version}-no-jdk.tar.gz";
sha256 = "03p5946j8m1v2ca21fz4cy4d90y6ksb8xcgd6ff7g15lg46hpjsm";
};
wmClass = "jetbrains-idea";
};