Loading doc/release-notes/rl-2505.section.md +2 −0 Original line number Diff line number Diff line Loading @@ -161,6 +161,8 @@ - The `haka` package and module has been removed because the package was broken and unmaintained for 9 years. - The `gsignond` package, plugins and module have been removed because they were unmaintained for 6 years. - `strawberry` has been updated to 1.2, which drops support for the VLC backend and Qt 5. The `strawberry-qt5` package and `withGstreamer`/`withVlc` override options have been removed due to this. Loading nixos/modules/module-list.nix +0 −1 Original line number Diff line number Diff line Loading @@ -554,7 +554,6 @@ ./services/desktops/gnome/rygel.nix ./services/desktops/gnome/sushi.nix ./services/desktops/gnome/tinysparql.nix ./services/desktops/gsignond.nix ./services/desktops/gvfs.nix ./services/desktops/malcontent.nix ./services/desktops/neard.nix Loading nixos/modules/rename.nix +3 −0 Original line number Diff line number Diff line Loading @@ -299,6 +299,9 @@ in See https://www.isc.org/blogs/isc-dhcp-eol/ for details. Please switch to a different implementation like kea or dnsmasq. '') (mkRemovedOptionModule [ "services" "gsignond" ] '' The corresponding package was unmaintained, abandoned upstream, used outdated library and thus removed from nixpkgs. '') (mkRemovedOptionModule [ "services" "haka" ] '' The corresponding package was broken and removed from nixpkgs. '') Loading nixos/modules/services/desktops/gsignond.nixdeleted 100644 → 0 +0 −46 Original line number Diff line number Diff line # Accounts-SSO gSignOn daemon { config, lib, pkgs, ... }: let package = pkgs.gsignond.override { plugins = config.services.gsignond.plugins; }; in { meta.maintainers = [ ]; ###### interface options = { services.gsignond = { enable = lib.mkOption { type = lib.types.bool; default = false; description = '' Whether to enable gSignOn daemon, a DBus service which performs user authentication on behalf of its clients. ''; }; plugins = lib.mkOption { type = lib.types.listOf lib.types.package; default = [ ]; description = '' What plugins to use with the gSignOn daemon. ''; }; }; }; ###### implementation config = lib.mkIf config.services.gsignond.enable { environment.etc."gsignond.conf".source = "${package}/etc/gsignond.conf"; services.dbus.packages = [ package ]; }; } Loading
doc/release-notes/rl-2505.section.md +2 −0 Original line number Diff line number Diff line Loading @@ -161,6 +161,8 @@ - The `haka` package and module has been removed because the package was broken and unmaintained for 9 years. - The `gsignond` package, plugins and module have been removed because they were unmaintained for 6 years. - `strawberry` has been updated to 1.2, which drops support for the VLC backend and Qt 5. The `strawberry-qt5` package and `withGstreamer`/`withVlc` override options have been removed due to this. Loading
nixos/modules/module-list.nix +0 −1 Original line number Diff line number Diff line Loading @@ -554,7 +554,6 @@ ./services/desktops/gnome/rygel.nix ./services/desktops/gnome/sushi.nix ./services/desktops/gnome/tinysparql.nix ./services/desktops/gsignond.nix ./services/desktops/gvfs.nix ./services/desktops/malcontent.nix ./services/desktops/neard.nix Loading
nixos/modules/rename.nix +3 −0 Original line number Diff line number Diff line Loading @@ -299,6 +299,9 @@ in See https://www.isc.org/blogs/isc-dhcp-eol/ for details. Please switch to a different implementation like kea or dnsmasq. '') (mkRemovedOptionModule [ "services" "gsignond" ] '' The corresponding package was unmaintained, abandoned upstream, used outdated library and thus removed from nixpkgs. '') (mkRemovedOptionModule [ "services" "haka" ] '' The corresponding package was broken and removed from nixpkgs. '') Loading
nixos/modules/services/desktops/gsignond.nixdeleted 100644 → 0 +0 −46 Original line number Diff line number Diff line # Accounts-SSO gSignOn daemon { config, lib, pkgs, ... }: let package = pkgs.gsignond.override { plugins = config.services.gsignond.plugins; }; in { meta.maintainers = [ ]; ###### interface options = { services.gsignond = { enable = lib.mkOption { type = lib.types.bool; default = false; description = '' Whether to enable gSignOn daemon, a DBus service which performs user authentication on behalf of its clients. ''; }; plugins = lib.mkOption { type = lib.types.listOf lib.types.package; default = [ ]; description = '' What plugins to use with the gSignOn daemon. ''; }; }; }; ###### implementation config = lib.mkIf config.services.gsignond.enable { environment.etc."gsignond.conf".source = "${package}/etc/gsignond.conf"; services.dbus.packages = [ package ]; }; }