summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorMatt McHenry <github@matt.mchenryfamily.org>2017-07-02 11:58:15 -0400
committerRobert Helgesson <robert@rycee.net>2017-07-10 11:45:24 +0200
commitcd7a01d56efa58bf6fbed20c89fdee0f3ef7759b (patch)
tree62f9ddfaf003751b68bccc7fa7f717b341e620ed /pkgs/applications/editors
parent48248d735cb036523629a41d8bb8ff93135792a9 (diff)
downloadnixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.tar
nixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.tar.gz
nixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.tar.bz2
nixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.tar.lz
nixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.tar.xz
nixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.tar.zst
nixlib-cd7a01d56efa58bf6fbed20c89fdee0f3ef7759b.zip
eclipse-cpp: 4.6.0 -> 4.7.0
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/eclipse/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index e28278638e3a..de7fae6a5362 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -18,21 +18,21 @@ rec {
 
   ### Eclipse CPP
 
-  eclipse-cpp = eclipse-cpp-46; # always point to latest
+  eclipse-cpp = eclipse-cpp-47; # always point to latest
 
-  eclipse-cpp-46 = buildEclipse {
-    name = "eclipse-cpp-4.6.0";
-    description = "Eclipse IDE for C/C++ Developers, Neon release";
+  eclipse-cpp-47 = buildEclipse {
+    name = "eclipse-cpp-4.7.0";
+    description = "Eclipse IDE for C/C++ Developers, Oxygen release";
     src =
       if stdenv.system == "x86_64-linux" then
         fetchurl {
-          url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/neon/R/eclipse-cpp-neon-R-linux-gtk-x86_64.tar.gz;
-          sha256 = "09fqsgvbjfdqvn7z03crkii34z4bsb34y272q68ib8741bxk0i6m";
+          url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-cpp-oxygen-R-linux-gtk-x86_64.tar.gz;
+          sha512 = "813c791e739d7d0e2ab242a5bacadca135bbeee20ef97aa830353cd90f63fa6e9c89cfcc6aadf635c742befe035bd6e3f15103013f63c419f6144e86ebde3ed1";
         }
       else if stdenv.system == "i686-linux" then
         fetchurl {
-          url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/neon/R/eclipse-cpp-neon-R-linux-gtk.tar.gz;
-          sha256 = "0a12qmqq22v7sbmwn1hjv1zcrkmp64bf0ajmdjljhs9ac79mxn5h";
+          url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-cpp-oxygen-R-linux-gtk.tar.gz;
+          sha512 = "2b50f4a00306a89cda1aaaa606e62285cacbf93464a9dd3f3319dca3e2c578b802e685de6f78e5e617d269e21271188effe73d41f491a6de946e28795d82db8a";
         }
       else throw "Unsupported system: ${stdenv.system}";
   };