lol

nautilus: Move from gnome scope to top-level

+14 -15
+1 -1
doc/languages-frameworks/gnome.section.md
··· 143 144 ## Updating GNOME packages {#ssec-gnome-updating} 145 146 - Most GNOME package offer [`updateScript`](#var-passthru-updateScript), it is therefore possible to update to latest source tarball by running `nix-shell maintainers/scripts/update.nix --argstr package gnome.nautilus` or even en masse with `nix-shell maintainers/scripts/update.nix --argstr path gnome`. Read the package’s `NEWS` file to see what changed. 147 148 ## Frequently encountered issues {#ssec-gnome-common-issues} 149
··· 143 144 ## Updating GNOME packages {#ssec-gnome-updating} 145 146 + Most GNOME package offer [`updateScript`](#var-passthru-updateScript), it is therefore possible to update to latest source tarball by running `nix-shell maintainers/scripts/update.nix --argstr package nautilus` or even en masse with `nix-shell maintainers/scripts/update.nix --argstr path gnome`. Read the package’s `NEWS` file to see what changed. 147 148 ## Frequently encountered issues {#ssec-gnome-common-issues} 149
+1 -1
maintainers/scripts/update.nix
··· 158 to run all update scripts for all packages that lists \`garbas\` as a maintainer 159 and have \`updateScript\` defined, or: 160 161 - % nix-shell maintainers/scripts/update.nix --argstr package gnome.nautilus 162 163 to run update script for specific package, or 164
··· 158 to run all update scripts for all packages that lists \`garbas\` as a maintainer 159 and have \`updateScript\` defined, or: 160 161 + % nix-shell maintainers/scripts/update.nix --argstr package nautilus 162 163 to run update script for specific package, or 164
+1 -1
nixos/modules/services/x11/desktop-managers/gnome.nix
··· 415 gnome-system-monitor 416 gnome-weather 417 pkgs.loupe 418 - nautilus 419 pkgs.gnome-connections 420 simple-scan 421 pkgs.snapshot
··· 415 gnome-system-monitor 416 gnome-weather 417 pkgs.loupe 418 + pkgs.nautilus 419 pkgs.gnome-connections 420 simple-scan 421 pkgs.snapshot
+2 -2
pkgs/applications/networking/dropbox/cli.nix
··· 6 , python3 7 , dropbox 8 , gtk4 9 - , gnome 10 , gdk-pixbuf 11 , gobject-introspection 12 }: ··· 51 buildInputs = [ 52 python3 53 gtk4 54 - gnome.nautilus 55 ]; 56 57 configureFlags = [
··· 6 , python3 7 , dropbox 8 , gtk4 9 + , nautilus 10 , gdk-pixbuf 11 , gobject-introspection 12 }: ··· 51 buildInputs = [ 52 python3 53 gtk4 54 + nautilus 55 ]; 56 57 configureFlags = [
+2 -2
pkgs/by-name/pa/papers/package.nix
··· 13 , shared-mime-info 14 , itstool 15 , poppler 16 - , gnome 17 , darwin 18 , djvulibre 19 , libspectre ··· 96 ] ++ lib.optionals supportXPS [ 97 libgxps 98 ] ++ lib.optionals supportNautilus [ 99 - gnome.nautilus 100 ] ++ lib.optionals stdenv.isDarwin [ 101 darwin.apple_sdk.frameworks.Foundation 102 ];
··· 13 , shared-mime-info 14 , itstool 15 , poppler 16 + , nautilus 17 , darwin 18 , djvulibre 19 , libspectre ··· 96 ] ++ lib.optionals supportXPS [ 97 libgxps 98 ] ++ lib.optionals supportNautilus [ 99 + nautilus 100 ] ++ lib.optionals stdenv.isDarwin [ 101 darwin.apple_sdk.frameworks.Foundation 102 ];
-1
pkgs/desktops/gnome/core/nautilus/default.nix pkgs/by-name/na/nautilus/package.nix
··· 120 passthru = { 121 updateScript = gnome.updateScript { 122 packageName = "nautilus"; 123 - attrPath = "gnome.nautilus"; 124 }; 125 }; 126
··· 120 passthru = { 121 updateScript = gnome.updateScript { 122 packageName = "nautilus"; 123 }; 124 }; 125
pkgs/desktops/gnome/core/nautilus/extension_dir.patch pkgs/by-name/na/nautilus/extension_dir.patch
pkgs/desktops/gnome/core/nautilus/fix-paths.patch pkgs/by-name/na/nautilus/fix-paths.patch
+1 -2
pkgs/desktops/gnome/default.nix
··· 96 # Needed for elementary's gala, wingpanel and greeter until support for higher versions is provided 97 mutter43 = callPackage ./core/mutter/43 { }; 98 99 - nautilus = callPackage ./core/nautilus { }; 100 - 101 networkmanager-openvpn = pkgs.networkmanager-openvpn.override { 102 withGnome = true; 103 }; ··· 259 260 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. 261 gnome-user-share = lib.warn "The ‘gnome.gnome-user-share’ was moved to top-level. Please use ‘pkgs.gnome-user-share’ directly." pkgs.gnome-user-share; # Added on 2024-06-13. 262 263 #### Removals 264 anjuta = throw "`anjuta` was removed after not being maintained upstream and losing control of its official domain."; # 2024-01-16
··· 96 # Needed for elementary's gala, wingpanel and greeter until support for higher versions is provided 97 mutter43 = callPackage ./core/mutter/43 { }; 98 99 networkmanager-openvpn = pkgs.networkmanager-openvpn.override { 100 withGnome = true; 101 }; ··· 257 258 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. 259 gnome-user-share = lib.warn "The ‘gnome.gnome-user-share’ was moved to top-level. Please use ‘pkgs.gnome-user-share’ directly." pkgs.gnome-user-share; # Added on 2024-06-13. 260 + nautilus = lib.warn "The ‘gnome.nautilus’ was moved to top-level. Please use ‘pkgs.nautilus’ directly." pkgs.nautilus; # Added on 2024-06-13. 261 262 #### Removals 263 anjuta = throw "`anjuta` was removed after not being maintained upstream and losing control of its official domain."; # 2024-01-16
+2 -2
pkgs/desktops/gnome/extensions/extensionOverrides.nix
··· 3 , easyeffects 4 , gjs 5 , glib 6 - , gnome 7 , gobject-introspection 8 , gsound 9 , hddtemp ··· 107 util_linux = util-linux; 108 xdg_utils = xdg-utils; 109 src = ./extensionOverridesPatches/gtk4-ding_at_smedius.gitlab.com.patch; 110 - nautilus_gsettings_path = "${glib.getSchemaPath gnome.nautilus}"; 111 }) 112 ]; 113 }))
··· 3 , easyeffects 4 , gjs 5 , glib 6 + , nautilus 7 , gobject-introspection 8 , gsound 9 , hddtemp ··· 107 util_linux = util-linux; 108 xdg_utils = xdg-utils; 109 src = ./extensionOverridesPatches/gtk4-ding_at_smedius.gitlab.com.patch; 110 + nautilus_gsettings_path = "${glib.getSchemaPath nautilus}"; 111 }) 112 ]; 113 }))
+2 -2
pkgs/tools/filesystems/eiciel/default.nix
··· 2 , fetchFromGitHub 3 , stdenv 4 , acl 5 - , gnome 6 , glibmm_2_68 7 , gtkmm4 8 , meson 9 , ninja 10 , pkg-config 11 , itstool ··· 39 acl 40 glibmm_2_68 41 gtkmm4 42 - gnome.nautilus 43 ]; 44 45 mesonFlags = [
··· 2 , fetchFromGitHub 3 , stdenv 4 , acl 5 , glibmm_2_68 6 , gtkmm4 7 , meson 8 + , nautilus 9 , ninja 10 , pkg-config 11 , itstool ··· 39 acl 40 glibmm_2_68 41 gtkmm4 42 + nautilus 43 ]; 44 45 mesonFlags = [
+2 -1
pkgs/tools/misc/nautilus-open-any-terminal/default.nix
··· 5 , fetchFromGitHub 6 , glib 7 , gnome 8 , gobject-introspection 9 , gsettings-desktop-schemas 10 , gtk3 ··· 37 buildInputs = [ 38 dbus 39 dconf 40 - gnome.nautilus 41 gnome.nautilus-python 42 gsettings-desktop-schemas 43 gtk3
··· 5 , fetchFromGitHub 6 , glib 7 , gnome 8 + , nautilus 9 , gobject-introspection 10 , gsettings-desktop-schemas 11 , gtk3 ··· 38 buildInputs = [ 39 dbus 40 dconf 41 + nautilus 42 gnome.nautilus-python 43 gsettings-desktop-schemas 44 gtk3