Use IntelliJ EAP.

This commit is contained in:
Gabriel Ebner 2015-10-01 08:18:25 +02:00
parent ad2d11c0b1
commit 651c2ebd03
1 changed files with 8 additions and 0 deletions

View File

@ -101,6 +101,14 @@
] ++ (with aspellDicts; [ en de fr nl ]);
nixpkgs.config.packageOverrides = pkgs: rec {
idea-community = pkgs.idea.idea-community.overrideDerivation (oldAttrs: rec {
name = "idea-community-${version}";
version = "15.eap";
src = pkgs.fetchurl {
url = "https://download.jetbrains.com/idea/ideaIC-142.5047.6.tar.gz";
sha256 = "e6d32e6df22b9431810711bed27d36195d8e4f9e161e2d4e6249e530c462c185";
};
});
};
nixpkgs.config.allowTexliveBuilds = true;