From 05a22c01747fe89c5a12ed351fbee2c5e79b3e9e Mon Sep 17 00:00:00 2001 From: Scott Christopher Date: Mon, 15 Dec 2014 09:32:30 +1100 Subject: [PATCH] Bumped PHPStorm to 8.0.2 - also removed fsnotifier from global bin to prevent colisions when multiple Jetbrains IDEs are installed. --- pkgs/applications/editors/idea/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/editors/idea/default.nix b/pkgs/applications/editors/idea/default.nix index f1e3a078b70..4cd88d53679 100644 --- a/pkgs/applications/editors/idea/default.nix +++ b/pkgs/applications/editors/idea/default.nix @@ -74,12 +74,6 @@ let && jdk=${jdk}/lib/openjdk \ || jdk=${jdk} - if [ "${stdenv.system}" == "x86_64-linux" ]; then - makeWrapper "$out/$name/bin/fsnotifier64" "$out/bin/fsnotifier64" - else - makeWrapper "$out/$name/bin/fsnotifier" "$out/bin/fsnotifier" - fi - makeWrapper "$out/$name/bin/${loName}.sh" "$out/bin/${loName}" \ --prefix PATH : "${jdk}/bin:${coreutils}/bin:${gnugrep}/bin:${which}/bin:${git}/bin" \ --prefix LD_RUN_PATH : "${stdenv.gcc.gcc}/lib/" \ @@ -295,13 +289,13 @@ in phpstorm = buildPhpStorm rec { name = "phpstorm-${version}"; - version = "8.0.1"; - build = "PS-138.2001"; + version = "8.0.2"; + build = "PS-139.732"; description = "Professional IDE for Web and PHP developers"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "http://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz"; - sha256 = "0d46442aa32174fe16846c3c31428178ab69b827d2e0ce31f633f13b64c01afc"; + sha256 = "01b8vx6swi71sd0rc7i1jnicilqp11ch3zrm8gwb6xh1pmmpdirf"; }; };