From 18881195c20314aebcf54d6e5c85ae2df74da5be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 28 Dec 2020 21:15:56 +0100 Subject: [PATCH] eclipses.plugins.embed-cdt: 3.1.1 -> 6.3.1 * Rename from gnuarmeclipse. * Version bump. * Update meta. * Alias the old name, for backwards compat. --- pkgs/applications/editors/eclipse/plugins.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 1d1406160c79..8c9189466c83 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -433,25 +433,26 @@ rec { }; }; - gnuarmeclipse = buildEclipseUpdateSite rec { - name = "gnuarmeclipse-${version}"; - version = "3.1.1-201606210758"; + embed-cdt = buildEclipseUpdateSite rec { + name = "embed-cdt-${version}"; + version = "6.3.1"; src = fetchzip { - stripRoot = false; - url = "https://github.com/gnuarmeclipse/plug-ins/releases/download/v${version}/ilg.gnuarmeclipse.repository-${version}.zip"; - sha256 = "1g77jlhfa3csaxxps1z5lasrd9l2p5ajnddnq9ra5syw8ggkdc2h"; + stripRoot = true; + url = "https://github.com/eclipse-embed-cdt/eclipse-plugins/archive/v${version}.zip"; + sha256 = "sha256-0wHRIls48NGDQzD+wuX79Thgiax+VVYVPJw2Z6NEzsg="; }; meta = with lib; { - homepage = "http://gnuarmeclipse.livius.net/"; - description = "GNU ARM Eclipse Plug-ins"; + homepage = "https://github.com/eclipse-embed-cdt/eclipse-plugins"; + description = "Embedded C/C++ Development Tools (formerly GNU MCU/ARM Eclipse)"; sourceProvenance = with sourceTypes; [ binaryBytecode ]; - license = licenses.epl10; + license = licenses.epl20; platforms = platforms.all; maintainers = [ maintainers.bjornfor ]; }; }; + gnuarmeclipse = embed-cdt; # backward compat alias, added 2022-11-04 jsonedit = buildEclipsePlugin rec { name = "jsonedit-${version}";