From 651c2ebd03a1776e8a621329e353a2df772ab8c5 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Thu, 1 Oct 2015 08:18:25 +0200 Subject: [PATCH] Use IntelliJ EAP. --- common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/common.nix b/common.nix index d8bc5da..dd0e72f 100644 --- a/common.nix +++ b/common.nix @@ -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;