Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8599adeadd78
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b1b06de9870a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jul 27, 2020

  1. riot-{web,desktop}: throw an error to use element-web

    This approach has been discussed in #93774[1]. The application has been
    completely rebranded and to avoid confusion, users should actively be
    pointed to `element-*`.
    
    [1] #93774 (comment)
    Ma27 committed Jul 27, 2020
    Copy the full SHA
    888eb29 View commit details
  2. Merge pull request #93774 from Ma27/riot-removal

    riot-{web,desktop}: throw an error to use element-web
    Ma27 authored Jul 27, 2020
    Copy the full SHA
    b1b06de View commit details
Showing with 4 additions and 2 deletions.
  1. +4 −2 pkgs/top-level/aliases.nix
6 changes: 4 additions & 2 deletions pkgs/top-level/aliases.nix
Original file line number Diff line number Diff line change
@@ -449,8 +449,6 @@ mapAliases ({
rdiff_backup = rdiff-backup; # added 2014-11-23
rdmd = dtools; # added 2017-08-19
rhc = throw "deprecated in 2019-04-09: abandoned by upstream.";
riot-desktop = element-desktop; # added 2020-07-15
riot-web = element-web; # added 2020-07-15
rng_tools = rng-tools; # added 2018-10-24
robomongo = robo3t; #added 2017-09-28
rssglx = rss-glx; #added 2015-03-25
@@ -716,4 +714,8 @@ mapAliases ({
sqldeveloper_18 = throw "sqldeveloper_18 is not maintained anymore!"; # added 2020-02-04

gcc-snapshot = throw "Marked as broken for >2 years, additionally this 'snapshot' pointed to a fairly old one from gcc7.";

/* Cleanup before 21.03 */
riot-desktop = throw "riot-desktop is now element-desktop!";
riot-web = throw "riot-web is now element-web";
})