about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2018-02-22 20:47:08 -0500
committerGitHub <noreply@github.com>2018-02-22 20:47:08 -0500
commit87e6be3dcaacdf96096e8f30d9c5e2fdb984da90 (patch)
tree0ef253b9ebc28c790caa7fc42d14fbc9a2bee42c /pkgs/applications
parent472dd33ea4905d562d9380d42ff09365e4b79a7e (diff)
parent541d8795f6d36cc2929d487c7e3979a91ea2ec62 (diff)
downloadnixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.tar
nixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.tar.gz
nixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.tar.bz2
nixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.tar.lz
nixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.tar.xz
nixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.tar.zst
nixlib-87e6be3dcaacdf96096e8f30d9c5e2fdb984da90.zip
Merge pull request #35313 from volth/patch-87
jetbrains-editors: minor updates
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/jetbrains/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix
index 0e77094b819c..a02773f715c4 100644
--- a/pkgs/applications/editors/jetbrains/default.nix
+++ b/pkgs/applications/editors/jetbrains/default.nix
@@ -247,25 +247,25 @@ in
 
   datagrip = buildDataGrip rec {
     name = "datagrip-${version}";
-    version = "2017.2.3"; /* updated by script */
+    version = "2017.3.5"; /* updated by script */
     description = "Your Swiss Army Knife for Databases and SQL";
     license = stdenv.lib.licenses.unfree;
     src = fetchurl {
       url = "https://download.jetbrains.com/datagrip/${name}.tar.gz";
-      sha256 = "0yp5h8ps5hfi07gsz14pp61skibfx48klg8qmc4f6q6xzcfdqxsf"; /* updated by script */
+      sha256 = "1hfy0mxdsvydjjklh8fwdz6f6qxajhngmcmyyzw0gdfhw6ldrv9c"; /* updated by script */
     };
     wmClass = "jetbrains-datagrip";
-    update-channel = "datagrip_2017_2";
+    update-channel = "datagrip_2017_3";
   };
 
   goland = buildGoland rec {
     name = "goland-${version}";
-    version = "2017.3.1"; /* updated by script */
+    version = "2017.3.2"; /* updated by script */
     description = "Up and Coming Go IDE";
     license = stdenv.lib.licenses.unfree;
     src = fetchurl {
       url = "https://download.jetbrains.com/go/${name}.tar.gz";
-      sha256 = "0cfjfv01ra67sr8n8ijqwd9zm2yzb1nm447kf0mr5cynr124ch0z"; /* updated by script */
+      sha256 = "0bhvj1xqlpy58yq2s5nrhhaw53i913zpr135b1f6r5s22nvkigvm"; /* updated by script */
     };
     wmClass = "jetbrains-goland";
     update-channel = "goland_release";
@@ -338,15 +338,15 @@ in
 
   rider = buildRider rec {
     name = "rider-${version}";
-    version = "2017.2.1"; /* updated by script */
+    version = "2017.3.1"; /* updated by script */
     description = "A cross-platform .NET IDE based on the IntelliJ platform and ReSharper";
     license = stdenv.lib.licenses.unfree;
     src = fetchurl {
       url = "https://download.jetbrains.com/resharper/JetBrains.Rider-${version}.tar.gz";
-      sha256 = "1zviknxamp1y7lrlg5qfj3ijp96z0dqvcr42ca0fbx1xb887wzww"; /* updated by script */
+      sha256 = "0k9yc00lmk826pylfs9jyxqnlczk9vhq7bs61b8nyfam1dqbgikv"; /* updated by script */
     };
     wmClass = "jetbrains-rider";
-    update-channel = "rider_2017_2";
+    update-channel = "rider_2017_3";
   };
 
   ruby-mine = buildRubyMine rec {