mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
nautilus: Move from gnome scope to top-level
This commit is contained in:
parent
e124f51ee1
commit
2be24442bb
@ -143,7 +143,7 @@ You can also pass additional arguments to `makeWrapper` using `gappsWrapperArgs`
|
||||
|
||||
## Updating GNOME packages {#ssec-gnome-updating}
|
||||
|
||||
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.
|
||||
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.
|
||||
|
||||
## Frequently encountered issues {#ssec-gnome-common-issues}
|
||||
|
||||
|
@ -158,7 +158,7 @@ let
|
||||
to run all update scripts for all packages that lists \`garbas\` as a maintainer
|
||||
and have \`updateScript\` defined, or:
|
||||
|
||||
% nix-shell maintainers/scripts/update.nix --argstr package gnome.nautilus
|
||||
% nix-shell maintainers/scripts/update.nix --argstr package nautilus
|
||||
|
||||
to run update script for specific package, or
|
||||
|
||||
|
@ -415,7 +415,7 @@ in
|
||||
gnome-system-monitor
|
||||
gnome-weather
|
||||
pkgs.loupe
|
||||
nautilus
|
||||
pkgs.nautilus
|
||||
pkgs.gnome-connections
|
||||
simple-scan
|
||||
pkgs.snapshot
|
||||
|
@ -6,7 +6,7 @@
|
||||
, python3
|
||||
, dropbox
|
||||
, gtk4
|
||||
, gnome
|
||||
, nautilus
|
||||
, gdk-pixbuf
|
||||
, gobject-introspection
|
||||
}:
|
||||
@ -51,7 +51,7 @@ stdenv.mkDerivation {
|
||||
buildInputs = [
|
||||
python3
|
||||
gtk4
|
||||
gnome.nautilus
|
||||
nautilus
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
|
@ -120,7 +120,6 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
passthru = {
|
||||
updateScript = gnome.updateScript {
|
||||
packageName = "nautilus";
|
||||
attrPath = "gnome.nautilus";
|
||||
};
|
||||
};
|
||||
|
@ -13,7 +13,7 @@
|
||||
, shared-mime-info
|
||||
, itstool
|
||||
, poppler
|
||||
, gnome
|
||||
, nautilus
|
||||
, darwin
|
||||
, djvulibre
|
||||
, libspectre
|
||||
@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
] ++ lib.optionals supportXPS [
|
||||
libgxps
|
||||
] ++ lib.optionals supportNautilus [
|
||||
gnome.nautilus
|
||||
nautilus
|
||||
] ++ lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Foundation
|
||||
];
|
||||
|
@ -96,8 +96,6 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
# Needed for elementary's gala, wingpanel and greeter until support for higher versions is provided
|
||||
mutter43 = callPackage ./core/mutter/43 { };
|
||||
|
||||
nautilus = callPackage ./core/nautilus { };
|
||||
|
||||
networkmanager-openvpn = pkgs.networkmanager-openvpn.override {
|
||||
withGnome = true;
|
||||
};
|
||||
@ -259,6 +257,7 @@ lib.makeScope pkgs.newScope (self: with self; {
|
||||
|
||||
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.
|
||||
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.
|
||||
nautilus = lib.warn "The ‘gnome.nautilus’ was moved to top-level. Please use ‘pkgs.nautilus’ directly." pkgs.nautilus; # 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
|
||||
|
@ -3,7 +3,7 @@
|
||||
, easyeffects
|
||||
, gjs
|
||||
, glib
|
||||
, gnome
|
||||
, nautilus
|
||||
, gobject-introspection
|
||||
, gsound
|
||||
, hddtemp
|
||||
@ -107,7 +107,7 @@ super: lib.trivial.pipe super [
|
||||
util_linux = util-linux;
|
||||
xdg_utils = xdg-utils;
|
||||
src = ./extensionOverridesPatches/gtk4-ding_at_smedius.gitlab.com.patch;
|
||||
nautilus_gsettings_path = "${glib.getSchemaPath gnome.nautilus}";
|
||||
nautilus_gsettings_path = "${glib.getSchemaPath nautilus}";
|
||||
})
|
||||
];
|
||||
}))
|
||||
|
@ -2,10 +2,10 @@
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, acl
|
||||
, gnome
|
||||
, glibmm_2_68
|
||||
, gtkmm4
|
||||
, meson
|
||||
, nautilus
|
||||
, ninja
|
||||
, pkg-config
|
||||
, itstool
|
||||
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
||||
acl
|
||||
glibmm_2_68
|
||||
gtkmm4
|
||||
gnome.nautilus
|
||||
nautilus
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
|
@ -5,6 +5,7 @@
|
||||
, fetchFromGitHub
|
||||
, glib
|
||||
, gnome
|
||||
, nautilus
|
||||
, gobject-introspection
|
||||
, gsettings-desktop-schemas
|
||||
, gtk3
|
||||
@ -37,7 +38,7 @@ python3.pkgs.buildPythonPackage rec {
|
||||
buildInputs = [
|
||||
dbus
|
||||
dconf
|
||||
gnome.nautilus
|
||||
nautilus
|
||||
gnome.nautilus-python
|
||||
gsettings-desktop-schemas
|
||||
gtk3
|
||||
|
Loading…
Reference in New Issue
Block a user