eclipse-cpp: 4.6.0 -> 4.7.0

authored by Matt McHenry and committed by Robert Helgesson cd7a01d5 48248d73

+8 -8
+8 -8
pkgs/applications/editors/eclipse/default.nix
··· 18 18 19 19 ### Eclipse CPP 20 20 21 - eclipse-cpp = eclipse-cpp-46; # always point to latest 21 + eclipse-cpp = eclipse-cpp-47; # always point to latest 22 22 23 - eclipse-cpp-46 = buildEclipse { 24 - name = "eclipse-cpp-4.6.0"; 25 - description = "Eclipse IDE for C/C++ Developers, Neon release"; 23 + eclipse-cpp-47 = buildEclipse { 24 + name = "eclipse-cpp-4.7.0"; 25 + description = "Eclipse IDE for C/C++ Developers, Oxygen release"; 26 26 src = 27 27 if stdenv.system == "x86_64-linux" then 28 28 fetchurl { 29 - 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; 30 - sha256 = "09fqsgvbjfdqvn7z03crkii34z4bsb34y272q68ib8741bxk0i6m"; 29 + 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; 30 + sha512 = "813c791e739d7d0e2ab242a5bacadca135bbeee20ef97aa830353cd90f63fa6e9c89cfcc6aadf635c742befe035bd6e3f15103013f63c419f6144e86ebde3ed1"; 31 31 } 32 32 else if stdenv.system == "i686-linux" then 33 33 fetchurl { 34 - 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; 35 - sha256 = "0a12qmqq22v7sbmwn1hjv1zcrkmp64bf0ajmdjljhs9ac79mxn5h"; 34 + 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; 35 + sha512 = "2b50f4a00306a89cda1aaaa606e62285cacbf93464a9dd3f3319dca3e2c578b802e685de6f78e5e617d269e21271188effe73d41f491a6de946e28795d82db8a"; 36 36 } 37 37 else throw "Unsupported system: ${stdenv.system}"; 38 38 };