diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-22 22:16:46 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2024-10-22 22:50:24 +0900 |
commit | cfae0df4358d5287ebba5cf9de4b207763506b27 (patch) | |
tree | 6d40b85c145e6a7c080e6a5c25f8dcd8c71fea99 /gnu | |
parent | 94023ae509ed957d21fb165ac97f5fa8ef443281 (diff) | |
download | guix-cfae0df4358d5287ebba5cf9de4b207763506b27.tar.gz guix-cfae0df4358d5287ebba5cf9de4b207763506b27.zip |
Revert "gnu: totem: Match the features of the upstream flatpak distribution."
This reverts commit 0e94db8a276692a819933f63fb3f654b045c57fe. This commit was
misguided: most of the dependencies found in the upstream flatpak definition
are transitive dependencies (most of them used by grilo/grilo-plugins here).
Change-Id: I7136743eda5d0d0b7a7e8420c3b44624ac46ba06
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 32 |
1 files changed, 2 insertions, 30 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4f239f36d3..b8fab5e702 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -6768,7 +6768,7 @@ discovery protocols.") desktop-file-utils gettext-minimal gobject-introspection - `(,glib "bin") ;for 'glib-mkenums' + `(,glib "bin") ;for 'glib-mkenums' intltool itstool libxml2 @@ -6776,58 +6776,30 @@ discovery protocols.") (propagated-inputs (list dconf)) (inputs - ;; Try to follow the enabled features of the official upstream - ;; distribution of Totem to avoid surprising users (see: - ;; https://raw.githubusercontent.com/flathub/org.gnome.Totem/\ - ;; refs/heads/master/org.gnome.Totem.json). (list (librsvg-for-system) adwaita-icon-theme at-spi2-core - avahi bash-minimal cairo dbus-glib - ;;dleyna ;; FIXME: package me! (see: - ;; https://raw.githubusercontent.com/flathub/org.gnome.Totem/\ - ;; refs/heads/master/dleyna/dleyna.json). - ffmpeg gdk-pixbuf - gom gnome-desktop - gnome-online-accounts grilo grilo-plugins gsettings-desktop-schemas - gssdp gst-plugins-base gst-plugins-good gstreamer gtk+ - gupnp - gupnp-av - gupnp-dlna - liba52 - libass - libdvdcss - libdvdnav - libdvdread - libgdata - libmediaart - libmpeg2 libhandy - liboauth libpeas libsoup libxml2 libxrandr libxtst libxxf86vm - pipewire python python-pygobject - rest-next - tracker - tracker-miners totem-pl-parser vala xorgproto)) @@ -6837,7 +6809,7 @@ discovery protocols.") ;; Disable automatic GStreamer plugin installation via PackageKit and ;; all that. #:configure-flags - ;; Do not build .a files for the plugins, it's completely useless. + ;; Do not build .a files for the plugins, it's completely useless. ;; This saves 2 MiB. #~(list "--default-library" "shared") #:phases |