nautilus-python: Move from gnome scope to top-level

+10 -12
+1 -1
nixos/modules/programs/nautilus-open-any-terminal.nix
··· 19 19 20 20 config = lib.mkIf cfg.enable { 21 21 environment.systemPackages = with pkgs; [ 22 - gnome.nautilus-python 22 + nautilus-python 23 23 nautilus-open-any-terminal 24 24 ]; 25 25 programs.dconf = lib.optionalAttrs (cfg.terminal != null) {
+2 -2
pkgs/applications/misc/collision/default.nix
··· 5 5 , wrapGAppsHook4 6 6 , desktopToDarwinBundle 7 7 , gobject-introspection 8 - , gnome 8 + , nautilus-python 9 9 , python3 10 10 , libadwaita 11 11 , openssl ··· 54 54 libadwaita 55 55 openssl 56 56 libxml2 57 - gnome.nautilus-python 57 + nautilus-python 58 58 python3.pkgs.pygobject3 59 59 ]; 60 60
+2 -2
pkgs/by-name/in/insync-nautilus/package.nix
··· 3 3 fetchurl, 4 4 lib, 5 5 dpkg, 6 - gnome, 6 + nautilus-python, 7 7 insync-emblem-icons, 8 8 }: 9 9 ··· 25 25 nativeBuildInputs = [ dpkg ]; 26 26 27 27 buildInputs = [ 28 - gnome.nautilus-python 28 + nautilus-python 29 29 insync-emblem-icons 30 30 ]; 31 31
+2 -2
pkgs/by-name/na/nautilus-open-in-blackbox/package.nix
··· 1 - { python3, fetchFromGitHub, gnome, stdenv, lib }: 1 + { python3, fetchFromGitHub, nautilus-python, stdenv, lib }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "nautilus-open-in-blackbox"; 4 4 version = "0.1.1"; ··· 15 15 patches = [ ./paths.patch ]; 16 16 17 17 buildInputs = [ 18 - gnome.nautilus-python 18 + nautilus-python 19 19 python3.pkgs.pygobject3 20 20 ]; 21 21
+1 -2
pkgs/desktops/gnome/default.nix
··· 241 241 242 242 metacity = callPackage ./misc/metacity { }; 243 243 244 - nautilus-python = callPackage ./misc/nautilus-python { }; 245 - 246 244 gtkhtml = callPackage ./misc/gtkhtml { enchant = pkgs.enchant2; }; 247 245 248 246 pomodoro = callPackage ./misc/pomodoro { }; ··· 258 256 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 257 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 258 nautilus = lib.warn "The ‘gnome.nautilus’ was moved to top-level. Please use ‘pkgs.nautilus’ directly." pkgs.nautilus; # Added on 2024-06-13. 259 + nautilus-python = lib.warn "The ‘gnome.nautilus-python’ was moved to top-level. Please use ‘pkgs.nautilus-python’ directly." pkgs.nautilus-python; # Added on 2024-06-13. 261 260 262 261 #### Removals 263 262 anjuta = throw "`anjuta` was removed after not being maintained upstream and losing control of its official domain."; # 2024-01-16
-1
pkgs/desktops/gnome/misc/nautilus-python/default.nix pkgs/by-name/na/nautilus-python/package.nix
··· 52 52 passthru = { 53 53 updateScript = gnome.updateScript { 54 54 packageName = pname; 55 - attrPath = "gnome.${pname}"; 56 55 }; 57 56 }; 58 57
pkgs/desktops/gnome/misc/nautilus-python/fix-paths.patch pkgs/by-name/na/nautilus-python/fix-paths.patch
+2 -2
pkgs/tools/misc/nautilus-open-any-terminal/default.nix
··· 4 4 , dconf 5 5 , fetchFromGitHub 6 6 , glib 7 - , gnome 8 7 , nautilus 8 + , nautilus-python 9 9 , gobject-introspection 10 10 , gsettings-desktop-schemas 11 11 , gtk3 ··· 39 39 dbus 40 40 dconf 41 41 nautilus 42 - gnome.nautilus-python 42 + nautilus-python 43 43 gsettings-desktop-schemas 44 44 gtk3 45 45 python3.pkgs.pygobject3