gnome-autoar: Move from gnome scope to top-level

This commit is contained in:
Jan Tojnar 2024-06-13 11:15:49 +02:00
parent b0a6721b1d
commit 7a3aad75d3
3 changed files with 3 additions and 6 deletions

View File

@ -47,7 +47,6 @@ stdenv.mkDerivation rec {
passthru = {
updateScript = gnome.updateScript {
packageName = "gnome-autoar";
attrPath = "gnome.gnome-autoar";
};
};

View File

@ -251,8 +251,6 @@ lib.makeScope pkgs.newScope (self: with self; {
pomodoro = callPackage ./misc/pomodoro { };
gnome-autoar = callPackage ./misc/gnome-autoar { };
gnome-packagekit = callPackage ./misc/gnome-packagekit { };
}) // lib.optionalAttrs config.allowAliases {
#### Legacy aliases. They need to be outside the scope or they will shadow the attributes from parent scope.
@ -261,6 +259,8 @@ lib.makeScope pkgs.newScope (self: with self; {
gedit = throw "The gnome.gedit alias was removed. Please use pkgs.gedit directly."; # converted to throw on 2023-12-27
gnome-todo = throw "The gnome.gnome-todo alias was removed. Please use pkgs.endeavour directly."; # converted to throw on 2023-12-27
gnome-autoar = lib.warn "The gnome.gnome-autoar was moved to top-level. Please use pkgs.gnome-autoar directly." pkgs.gnome-autoar; # Added on 2024-06-13.
#### Removals
anjuta = throw "`anjuta` was removed after not being maintained upstream and losing control of its official domain."; # 2024-01-16
}

View File

@ -31201,9 +31201,7 @@ with pkgs;
gnomecast = callPackage ../applications/video/gnomecast { };
gnome-recipes = callPackage ../applications/misc/gnome-recipes {
inherit (gnome) gnome-autoar;
};
gnome-recipes = callPackage ../applications/misc/gnome-recipes { };
gollum = callPackage ../applications/misc/gollum { };