mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #165868 from LibreCybernetics/remove-python2-dependencies-from-gnome
This commit is contained in:
commit
44fe73efbe
|
@ -690,6 +690,13 @@
|
|||
before, you will need to have it enabled using GSettings.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>services.telepathy</literal> will no longer be
|
||||
enabled by default for GNOME desktops, one should enable it in
|
||||
their configs if using Empathy or Polari.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
If you previously used
|
||||
|
|
|
@ -279,6 +279,8 @@ In addition to numerous new and upgraded packages, this release has the followin
|
|||
|
||||
- `services.gnome.experimental-features.realtime-scheduling` option has been removed, as GNOME Shell now [uses rtkit](https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2060). Use `security.rtkit.enable = true;` instead. As before, you will need to have it enabled using GSettings.
|
||||
|
||||
- `services.telepathy` will no longer be enabled by default for GNOME desktops, one should enable it in their configs if using Empathy or Polari.
|
||||
|
||||
- If you previously used `/etc/docker/daemon.json`, you need to incorporate the changes into the new option `virtualisation.docker.daemon.settings`.
|
||||
|
||||
- Ntopng (`services.ntopng`) is updated to 5.2.1 and uses a separate Redis instance if `system.stateVersion` is at least `22.05`. Existing setups shouldn't be affected.
|
||||
|
|
|
@ -386,7 +386,6 @@ in
|
|||
services.gnome.rygel.enable = mkDefault true;
|
||||
services.gvfs.enable = true;
|
||||
services.system-config-printer.enable = (mkIf config.services.printing.enable (mkDefault true));
|
||||
services.telepathy.enable = mkDefault true;
|
||||
|
||||
systemd.packages = with pkgs.gnome; [
|
||||
gnome-session
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
, dbus
|
||||
, libgcrypt
|
||||
, pam
|
||||
, python2
|
||||
, python3
|
||||
, glib
|
||||
, libxslt
|
||||
, gettext
|
||||
|
@ -51,8 +51,7 @@ stdenv.mkDerivation rec {
|
|||
p11-kit
|
||||
];
|
||||
|
||||
# In 3.20.1, tests do not support Python 3
|
||||
checkInputs = [ dbus python2 ];
|
||||
checkInputs = [ dbus python3 ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-pkcs11-config=${placeholder "out"}/etc/pkcs11/" # installation directories
|
||||
|
|
Loading…
Reference in a new issue