about summary refs log tree commit diff
path: root/pkgs/applications/editors/jetbrains
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-08-26 14:36:26 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-08-26 14:36:26 +0100
commit6dae73f552f299e4be792a8f526dda98f427149e (patch)
tree302945687e825a3bef428820a23dddab0e61083c /pkgs/applications/editors/jetbrains
parent5ddacdc3a89e609db13a7cd47839edc4ac8cfaba (diff)
downloadnixlib-6dae73f552f299e4be792a8f526dda98f427149e.tar
nixlib-6dae73f552f299e4be792a8f526dda98f427149e.tar.gz
nixlib-6dae73f552f299e4be792a8f526dda98f427149e.tar.bz2
nixlib-6dae73f552f299e4be792a8f526dda98f427149e.tar.lz
nixlib-6dae73f552f299e4be792a8f526dda98f427149e.tar.xz
nixlib-6dae73f552f299e4be792a8f526dda98f427149e.tar.zst
nixlib-6dae73f552f299e4be792a8f526dda98f427149e.zip
jetbrains.phpstorm: 2017.1.4 -> 2017.2.1
Diffstat (limited to 'pkgs/applications/editors/jetbrains')
-rw-r--r--pkgs/applications/editors/jetbrains/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index ea1fc1022fd2..95f3c0801d2a 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -320,15 +320,15 @@ in
 
   phpstorm = buildPhpStorm rec {
     name = "phpstorm-${version}";
-    version = "2017.1.4";
+    version = "2017.2.1"; /* updated by script */
     description = "Professional IDE for Web and PHP developers";
     license = stdenv.lib.licenses.unfree;
     src = fetchurl {
       url = "https://download.jetbrains.com/webide/PhpStorm-${version}.tar.gz";
-      sha256 = "0zrbcziznz6dwh56snr27752xcsnl2gsxzi6jiraplkd92f2xlaf";
+      sha256 = "2f1af9ef6e9cda25a809a19a25f2d4fbaef00edf9d1d5a195572ab5e04e71e5e"; /* updated by script */
     };
     wmClass = "jetbrains-phpstorm";
-    update-channel = "PS2017.1";
+    update-channel = "PS2017.2";
   };
 
   phpstorm10 = buildPhpStorm rec {