Commit 18881195 authored by Bjørn Forsman's avatar Bjørn Forsman
Browse files

eclipses.plugins.embed-cdt: 3.1.1 -> 6.3.1

* Rename from gnuarmeclipse.
* Version bump.
* Update meta.
* Alias the old name, for backwards compat.
parent b02d74fb
Loading
Loading
Loading
Loading
+10 −9
Original line number Diff line number Diff line
@@ -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}";