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;