2018-07-08 03:08:48 +03:00
|
|
|
{ config, pkgs, lib }:
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-07-06 10:45:40 +03:00
|
|
|
lib.makeScope pkgs.newScope (self: with self; {
|
2017-12-25 12:46:52 +03:00
|
|
|
updateScript = callPackage ./update.nix { };
|
|
|
|
|
2019-01-17 02:03:55 +03:00
|
|
|
/* Remove packages of packagesToRemove from packages, based on their names
|
|
|
|
|
|
|
|
Type:
|
|
|
|
removePackagesByName :: [package] -> [package] -> [package]
|
|
|
|
|
|
|
|
Example:
|
|
|
|
removePackagesByName [ nautilus file-roller ] [ file-roller totem ]
|
|
|
|
=> [ nautilus ]
|
|
|
|
*/
|
|
|
|
removePackagesByName = packages: packagesToRemove:
|
|
|
|
let
|
2019-11-24 20:22:28 +03:00
|
|
|
namesToRemove = map lib.getName packagesToRemove;
|
2019-01-17 02:03:55 +03:00
|
|
|
in
|
2019-11-24 20:22:28 +03:00
|
|
|
lib.filter (x: !(builtins.elem (lib.getName x) namesToRemove)) packages;
|
2019-01-17 02:03:55 +03:00
|
|
|
|
2020-03-16 05:30:29 +03:00
|
|
|
maintainers = lib.teams.gnome.members;
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
libsoup = pkgs.libsoup.override { gnomeSupport = true; };
|
|
|
|
libchamplain = pkgs.libchamplain.override { libsoup = libsoup; };
|
|
|
|
gnome3 = self // { recurseForDerivations = false; };
|
|
|
|
|
|
|
|
# ISO installer
|
|
|
|
# installerIso = callPackage ./installer.nix {};
|
|
|
|
|
|
|
|
#### Core (http://ftp.acc.umu.se/pub/GNOME/core/)
|
|
|
|
|
|
|
|
adwaita-icon-theme = callPackage ./core/adwaita-icon-theme { };
|
|
|
|
|
|
|
|
baobab = callPackage ./core/baobab { };
|
|
|
|
|
|
|
|
caribou = callPackage ./core/caribou { };
|
|
|
|
|
|
|
|
dconf-editor = callPackage ./core/dconf-editor { };
|
|
|
|
|
2017-12-12 21:57:02 +03:00
|
|
|
empathy = callPackage ./core/empathy { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
epiphany = callPackage ./core/epiphany { };
|
|
|
|
|
|
|
|
evince = callPackage ./core/evince { }; # ToDo: dbus would prevent compilation, enable tests
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
evolution-data-server = callPackage ./core/evolution-data-server { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gdm = callPackage ./core/gdm { };
|
|
|
|
|
|
|
|
gnome-backgrounds = callPackage ./core/gnome-backgrounds { };
|
|
|
|
|
|
|
|
gnome-bluetooth = callPackage ./core/gnome-bluetooth { };
|
|
|
|
|
2018-03-10 02:33:19 +03:00
|
|
|
gnome-color-manager = callPackage ./core/gnome-color-manager { };
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
gnome-contacts = callPackage ./core/gnome-contacts { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-control-center = callPackage ./core/gnome-control-center { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gnome-calculator = callPackage ./core/gnome-calculator { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-common = callPackage ./core/gnome-common { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-desktop = callPackage ./core/gnome-desktop { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gnome-dictionary = callPackage ./core/gnome-dictionary { };
|
|
|
|
|
|
|
|
gnome-disk-utility = callPackage ./core/gnome-disk-utility { };
|
|
|
|
|
|
|
|
gnome-font-viewer = callPackage ./core/gnome-font-viewer { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-keyring = callPackage ./core/gnome-keyring { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
libgnome-keyring = callPackage ./core/libgnome-keyring { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2019-09-19 18:52:29 +03:00
|
|
|
gnome-initial-setup = callPackage ./core/gnome-initial-setup { };
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
gnome-online-miners = callPackage ./core/gnome-online-miners { };
|
|
|
|
|
2018-09-29 04:34:39 +03:00
|
|
|
gnome-remote-desktop = callPackage ./core/gnome-remote-desktop { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-session = callPackage ./core/gnome-session { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-shell = callPackage ./core/gnome-shell { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gnome-shell-extensions = callPackage ./core/gnome-shell-extensions { };
|
|
|
|
|
|
|
|
gnome-screenshot = callPackage ./core/gnome-screenshot { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-settings-daemon = callPackage ./core/gnome-settings-daemon { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gnome-software = callPackage ./core/gnome-software { };
|
|
|
|
|
|
|
|
gnome-system-monitor = callPackage ./core/gnome-system-monitor { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome-terminal = callPackage ./core/gnome-terminal { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-03-14 17:12:08 +03:00
|
|
|
gnome-themes-extra = callPackage ./core/gnome-themes-extra { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gnome-user-share = callPackage ./core/gnome-user-share { };
|
|
|
|
|
|
|
|
gucharmap = callPackage ./core/gucharmap { };
|
|
|
|
|
2019-09-02 14:00:22 +03:00
|
|
|
gvfs = pkgs.gvfs.override { gnomeSupport = true; };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
eog = callPackage ./core/eog { };
|
|
|
|
|
|
|
|
mutter = callPackage ./core/mutter { };
|
|
|
|
|
2018-09-17 20:12:44 +03:00
|
|
|
# Needed for elementary's gala and greeter until they get around to adapting to all the API breaking changes in libmutter-3
|
|
|
|
# A more detailed explaination can be seen here https://decathorpe.com/2018/09/04/call-for-help-pantheon-on-fedora-29.html
|
|
|
|
# See Also: https://github.com/elementary/gala/issues/303
|
|
|
|
mutter328 = callPackage ./core/mutter/3.28.nix { };
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
nautilus = callPackage ./core/nautilus { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager-openvpn = pkgs.networkmanager-openvpn.override {
|
2018-08-09 18:30:20 +03:00
|
|
|
withGnome = true;
|
2016-09-18 22:35:23 +03:00
|
|
|
};
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager-vpnc = pkgs.networkmanager-vpnc.override {
|
2018-08-09 18:30:20 +03:00
|
|
|
withGnome = true;
|
2016-09-18 22:35:23 +03:00
|
|
|
};
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager-openconnect = pkgs.networkmanager-openconnect.override {
|
2018-08-09 18:30:20 +03:00
|
|
|
withGnome = true;
|
2016-09-18 22:35:23 +03:00
|
|
|
};
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager-fortisslvpn = pkgs.networkmanager-fortisslvpn.override {
|
2018-08-09 18:30:20 +03:00
|
|
|
withGnome = true;
|
2017-05-19 15:42:36 +03:00
|
|
|
};
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager-l2tp = pkgs.networkmanager-l2tp.override {
|
2018-08-09 18:30:20 +03:00
|
|
|
withGnome = true;
|
2016-09-18 22:35:23 +03:00
|
|
|
};
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager-iodine = pkgs.networkmanager-iodine.override {
|
2018-08-09 18:30:20 +03:00
|
|
|
withGnome = true;
|
2017-08-16 00:42:48 +03:00
|
|
|
};
|
|
|
|
|
2018-08-15 01:11:34 +03:00
|
|
|
rygel = callPackage ./core/rygel { };
|
|
|
|
|
2017-09-17 18:01:54 +03:00
|
|
|
simple-scan = callPackage ./core/simple-scan { };
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
sushi = callPackage ./core/sushi { };
|
|
|
|
|
|
|
|
totem = callPackage ./core/totem { };
|
|
|
|
|
|
|
|
yelp = callPackage ./core/yelp { };
|
|
|
|
|
2018-02-25 05:23:58 +03:00
|
|
|
yelp-xsl = callPackage ./core/yelp-xsl { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
zenity = callPackage ./core/zenity { };
|
|
|
|
|
|
|
|
|
|
|
|
#### Apps (http://ftp.acc.umu.se/pub/GNOME/apps/)
|
|
|
|
|
|
|
|
accerciser = callPackage ./apps/accerciser { };
|
|
|
|
|
|
|
|
cheese = callPackage ./apps/cheese { };
|
|
|
|
|
|
|
|
evolution = callPackage ./apps/evolution { };
|
|
|
|
|
|
|
|
file-roller = callPackage ./apps/file-roller { };
|
|
|
|
|
|
|
|
gedit = callPackage ./apps/gedit { };
|
|
|
|
|
2017-07-11 11:03:28 +03:00
|
|
|
ghex = callPackage ./apps/ghex { };
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
glade = callPackage ./apps/glade { };
|
|
|
|
|
2019-03-07 06:28:48 +03:00
|
|
|
gnome-books = callPackage ./apps/gnome-books { };
|
|
|
|
|
2016-09-24 14:44:59 +03:00
|
|
|
gnome-boxes = callPackage ./apps/gnome-boxes { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gnome-calendar = callPackage ./apps/gnome-calendar { };
|
|
|
|
|
|
|
|
gnome-characters = callPackage ./apps/gnome-characters { };
|
|
|
|
|
|
|
|
gnome-clocks = callPackage ./apps/gnome-clocks { };
|
|
|
|
|
|
|
|
gnome-documents = callPackage ./apps/gnome-documents { };
|
|
|
|
|
|
|
|
gnome-getting-started-docs = callPackage ./apps/gnome-getting-started-docs { };
|
|
|
|
|
|
|
|
gnome-logs = callPackage ./apps/gnome-logs { };
|
|
|
|
|
|
|
|
gnome-maps = callPackage ./apps/gnome-maps { };
|
|
|
|
|
|
|
|
gnome-music = callPackage ./apps/gnome-music { };
|
|
|
|
|
|
|
|
gnome-nettool = callPackage ./apps/gnome-nettool { };
|
|
|
|
|
2018-09-05 03:42:47 +03:00
|
|
|
gnome-notes = callPackage ./apps/gnome-notes { };
|
|
|
|
|
2018-02-01 02:45:48 +03:00
|
|
|
gnome-power-manager = callPackage ./apps/gnome-power-manager { };
|
|
|
|
|
2018-07-16 22:42:46 +03:00
|
|
|
gnome-sound-recorder = callPackage ./apps/gnome-sound-recorder { };
|
|
|
|
|
2018-08-04 12:54:43 +03:00
|
|
|
gnome-todo = callPackage ./apps/gnome-todo {};
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
gnome-weather = callPackage ./apps/gnome-weather { };
|
|
|
|
|
|
|
|
polari = callPackage ./apps/polari { };
|
|
|
|
|
|
|
|
seahorse = callPackage ./apps/seahorse { };
|
|
|
|
|
|
|
|
vinagre = callPackage ./apps/vinagre { };
|
|
|
|
|
|
|
|
#### Dev http://ftp.gnome.org/pub/GNOME/devtools/
|
|
|
|
|
|
|
|
anjuta = callPackage ./devtools/anjuta { };
|
|
|
|
|
|
|
|
devhelp = callPackage ./devtools/devhelp { };
|
|
|
|
|
|
|
|
gnome-devel-docs = callPackage ./devtools/gnome-devel-docs { };
|
|
|
|
|
|
|
|
#### Games
|
|
|
|
|
|
|
|
aisleriot = callPackage ./games/aisleriot { };
|
|
|
|
|
2018-03-22 14:56:30 +03:00
|
|
|
atomix = callPackage ./games/atomix { };
|
|
|
|
|
2016-09-18 22:35:23 +03:00
|
|
|
five-or-more = callPackage ./games/five-or-more { };
|
|
|
|
|
|
|
|
four-in-a-row = callPackage ./games/four-in-a-row { };
|
|
|
|
|
|
|
|
gnome-chess = callPackage ./games/gnome-chess { };
|
|
|
|
|
|
|
|
gnome-klotski = callPackage ./games/gnome-klotski { };
|
|
|
|
|
|
|
|
gnome-mahjongg = callPackage ./games/gnome-mahjongg { };
|
|
|
|
|
|
|
|
gnome-mines = callPackage ./games/gnome-mines { };
|
|
|
|
|
|
|
|
gnome-nibbles = callPackage ./games/gnome-nibbles { };
|
|
|
|
|
|
|
|
gnome-robots = callPackage ./games/gnome-robots { };
|
|
|
|
|
|
|
|
gnome-sudoku = callPackage ./games/gnome-sudoku { };
|
|
|
|
|
|
|
|
gnome-taquin = callPackage ./games/gnome-taquin { };
|
|
|
|
|
|
|
|
gnome-tetravex = callPackage ./games/gnome-tetravex { };
|
|
|
|
|
|
|
|
hitori = callPackage ./games/hitori { };
|
|
|
|
|
|
|
|
iagno = callPackage ./games/iagno { };
|
|
|
|
|
|
|
|
lightsoff = callPackage ./games/lightsoff { };
|
|
|
|
|
|
|
|
swell-foop = callPackage ./games/swell-foop { };
|
|
|
|
|
|
|
|
tali = callPackage ./games/tali { };
|
|
|
|
|
|
|
|
quadrapassel = callPackage ./games/quadrapassel { };
|
|
|
|
|
|
|
|
#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/
|
|
|
|
|
2017-10-08 19:10:57 +03:00
|
|
|
geary = callPackage ./misc/geary { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gitg = callPackage ./misc/gitg { };
|
|
|
|
|
2018-03-14 17:58:29 +03:00
|
|
|
libgnome-games-support = callPackage ./misc/libgnome-games-support { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
2018-08-08 07:02:40 +03:00
|
|
|
gnome-applets = callPackage ./misc/gnome-applets { };
|
|
|
|
|
2018-05-06 21:57:45 +03:00
|
|
|
gnome-flashback = callPackage ./misc/gnome-flashback { };
|
|
|
|
|
2018-05-06 21:11:09 +03:00
|
|
|
gnome-panel = callPackage ./misc/gnome-panel { };
|
|
|
|
|
2018-03-21 12:22:38 +03:00
|
|
|
gnome-tweaks = callPackage ./misc/gnome-tweaks { };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
gpaste = callPackage ./misc/gpaste { };
|
|
|
|
|
2018-05-06 21:34:04 +03:00
|
|
|
metacity = callPackage ./misc/metacity { };
|
|
|
|
|
2018-10-07 09:32:08 +03:00
|
|
|
nautilus-python = callPackage ./misc/nautilus-python { };
|
|
|
|
|
2019-06-03 17:54:36 +03:00
|
|
|
gtkhtml = callPackage ./misc/gtkhtml { enchant = pkgs.enchant1; };
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
pomodoro = callPackage ./misc/pomodoro { };
|
|
|
|
|
|
|
|
gnome-autoar = callPackage ./misc/gnome-autoar { };
|
|
|
|
|
|
|
|
gnome-packagekit = callPackage ./misc/gnome-packagekit { };
|
2018-07-12 03:51:54 +03:00
|
|
|
} // lib.optionalAttrs (config.allowAliases or true) {
|
2018-02-25 05:23:58 +03:00
|
|
|
#### Legacy aliases
|
|
|
|
|
2018-09-05 03:42:47 +03:00
|
|
|
bijiben = gnome-notes; # added 2018-09-26
|
2018-02-25 05:23:58 +03:00
|
|
|
evolution_data_server = evolution-data-server; # added 2018-02-25
|
2019-02-14 00:47:50 +03:00
|
|
|
geocode_glib = pkgs.geocode-glib; # added 2018-02-25
|
|
|
|
glib_networking = pkgs.glib-networking; # added 2018-02-25
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome_common = gnome-common; # added 2018-02-25
|
|
|
|
gnome_control_center = gnome-control-center; # added 2018-02-25
|
|
|
|
gnome_desktop = gnome-desktop; # added 2018-02-25
|
|
|
|
gnome_keyring = gnome-keyring; # added 2018-02-25
|
|
|
|
gnome_online_accounts = gnome-online-accounts; # added 2018-02-25
|
|
|
|
gnome_session = gnome-session; # added 2018-02-25
|
|
|
|
gnome_settings_daemon = gnome-settings-daemon; # added 2018-02-25
|
|
|
|
gnome_shell = gnome-shell; # added 2018-02-25
|
|
|
|
gnome_terminal = gnome-terminal; # added 2018-02-25
|
2018-03-14 17:12:08 +03:00
|
|
|
gnome-themes-standard = gnome-themes-extra; # added 2018-03-14
|
2018-02-25 05:23:58 +03:00
|
|
|
gnome_themes_standard = gnome-themes-standard; # added 2018-02-25
|
2018-03-21 12:22:38 +03:00
|
|
|
gnome-tweak-tool = gnome-tweaks; # added 2018-03-21
|
2018-02-25 05:23:58 +03:00
|
|
|
gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25
|
2018-03-14 17:58:29 +03:00
|
|
|
libgames-support = libgnome-games-support; # added 2018-03-14
|
2018-02-25 05:23:58 +03:00
|
|
|
libgnome_keyring = libgnome-keyring; # added 2018-02-25
|
2018-04-25 16:52:09 +03:00
|
|
|
inherit (pkgs) rarian; # added 2018-04-25
|
2018-02-25 05:23:58 +03:00
|
|
|
networkmanager_fortisslvpn = networkmanager-fortisslvpn; # added 2018-02-25
|
|
|
|
networkmanager_iodine = networkmanager-iodine; # added 2018-02-25
|
|
|
|
networkmanager_l2tp = networkmanager-l2tp; # added 2018-02-25
|
|
|
|
networkmanager_openconnect = networkmanager-openconnect; # added 2018-02-25
|
|
|
|
networkmanager_openvpn = networkmanager-openvpn; # added 2018-02-25
|
|
|
|
networkmanager_vpnc = networkmanager-vpnc; # added 2018-02-25
|
|
|
|
yelp_xsl = yelp-xsl; # added 2018-02-25
|
|
|
|
yelp_tools = yelp-tools; # added 2018-02-25
|
|
|
|
|
2019-02-14 00:47:50 +03:00
|
|
|
# added 2019-02-08
|
|
|
|
inherit (pkgs) atk glib gobject-introspection gspell webkitgtk gtk3 gtkmm3
|
|
|
|
libgtop libgudev libhttpseverywhere librsvg libsecret gdk_pixbuf gtksourceview gtksourceviewmm gtksourceview4
|
|
|
|
easytag meld orca rhythmbox shotwell gnome-usage
|
2020-03-04 03:21:34 +03:00
|
|
|
clutter clutter-gst clutter-gtk cogl gtk-vnc libdazzle libgda libgit2-glib libgxps libgdata libgepub libpeas libgee geocode-glib libgweather librest libzapojit libmediaart gfbgraph gexiv2 folks totem-pl-parser gcr gsound libgnomekbd vte vte_290 gnome-menus gdl;
|
2019-04-17 03:38:26 +03:00
|
|
|
inherit (pkgs) gsettings-desktop-schemas; # added 2019-04-16
|
2019-08-19 16:37:17 +03:00
|
|
|
inherit (pkgs) gnome-video-effects; # added 2019-08-19
|
2019-08-23 03:22:52 +03:00
|
|
|
inherit (pkgs) gnome-online-accounts grilo grilo-plugins tracker tracker-miners gnome-photos; # added 2019-08-23
|
2019-09-02 14:53:11 +03:00
|
|
|
inherit (pkgs) glib-networking; # added 2019-09-02
|
2019-09-09 01:51:01 +03:00
|
|
|
inherit (pkgs) nemiver; # added 2019-09-09
|
2019-08-19 16:37:17 +03:00
|
|
|
|
2019-02-14 00:47:50 +03:00
|
|
|
defaultIconTheme = adwaita-icon-theme;
|
|
|
|
gtk = gtk3;
|
|
|
|
gtkmm = gtkmm3;
|
|
|
|
rest = librest;
|
2019-08-01 12:25:30 +03:00
|
|
|
|
|
|
|
pidgin-im-gnome-shell-extension = pkgs.gnomeExtensions.pidgin-im-integration; # added 2019-08-01
|
2019-08-26 03:41:31 +03:00
|
|
|
|
|
|
|
# added 2019-08-25
|
2019-11-18 10:32:40 +03:00
|
|
|
corePackages = throw "gnome3.corePackages is removed since 2019-08-25: please use `services.gnome3.core-shell.enable`";
|
|
|
|
optionalPackages = throw "gnome3.optionalPackages is removed since 2019-08-25: please use `services.gnome3.core-utilities.enable`";
|
|
|
|
gamesPackages = throw "gnome3.gamesPackages is removed since 2019-08-25: please use `services.gnome3.games.enable`";
|
2019-09-18 02:12:04 +03:00
|
|
|
|
2019-11-18 10:32:40 +03:00
|
|
|
nautilus-sendto = throw "nautilus-sendto is removed since 2019-09-17: abandoned upstream";
|
2019-10-10 17:11:09 +03:00
|
|
|
|
|
|
|
inherit (pkgs) vala; # added 2019-10-10
|
2019-08-25 04:13:13 +03:00
|
|
|
|
2019-11-20 06:25:38 +03:00
|
|
|
inherit (pkgs) gnome-user-docs; # added 2019-11-20
|
|
|
|
|
2019-08-25 04:13:13 +03:00
|
|
|
inherit (pkgs) gegl_0_4; # added 2019-10-31
|
2019-11-05 02:38:42 +03:00
|
|
|
|
|
|
|
inherit (pkgs) gjs; # added 2019-01-05
|
2019-11-20 06:30:05 +03:00
|
|
|
|
|
|
|
inherit (pkgs) yelp-tools; # added 2019-11-20
|
2019-12-01 02:11:47 +03:00
|
|
|
|
|
|
|
inherit (pkgs) dconf; # added 2019-11-30
|
2019-12-11 14:12:48 +03:00
|
|
|
|
|
|
|
inherit (pkgs) networkmanagerapplet; # added 2019-12-12
|
2020-03-13 19:39:26 +03:00
|
|
|
|
|
|
|
vino = throw "vino is deprecated, use gnome-remote-desktop instead."; # added 2020-03-13
|
2020-03-19 17:26:54 +03:00
|
|
|
|
|
|
|
gnome-screensaver = throw "gnome-screensaver is deprecated. If you are using GNOME Flashback, it now has a built-in lock screen. If you are using it elsewhere, you can try xscreenlock or other alternatives."; # added 2020-03-19
|
2018-07-06 10:45:40 +03:00
|
|
|
})
|