diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-09 12:22:14 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-09 12:22:14 +0200 |
commit | 94ca5b4357af8f8921f0cb0873a7cf316f13aa69 (patch) | |
tree | 6ef30120737f26f298f7f17d86597b0b729517e0 /gnu/packages/gnome.scm | |
parent | 6750c114e3e988249f4069d0180316c6d0192350 (diff) | |
parent | db61bdd7f52270a35bd0a3a88650d98276dab20b (diff) | |
download | guix-94ca5b4357af8f8921f0cb0873a7cf316f13aa69.tar.gz guix-94ca5b4357af8f8921f0cb0873a7cf316f13aa69.zip |
Merge branch 'master' into emacs-team
Diffstat (limited to 'gnu/packages/gnome.scm')
-rw-r--r-- | gnu/packages/gnome.scm | 25 |
1 files changed, 18 insertions, 7 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4a2e867476..3b80692e90 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -11430,7 +11430,7 @@ and uncluttered interface for the management of password databases.") (define-public sound-juicer (package (name "sound-juicer") - (version "3.38.0") + (version "3.40.0") (source (origin (method url-fetch) @@ -11439,15 +11439,25 @@ and uncluttered interface for the management of password databases.") name "-" version ".tar.xz")) (sha256 (base32 - "08d5d81rz9sj3m5paw8fwbgxmhlbr7bcjdzpmzj832qvg8smydxf")))) + "1rhxmvx2mr22zd5p0azc0svi0mbnzcjnh3sasv3b9gli8ds85s1f")))) (build-system meson-build-system) (arguments (list #:glib-or-gtk? #t - #:phases #~(modify-phases %standard-phases - (add-after 'unpack 'disable-gtk-update-icon-cache - (lambda _ - (setenv "DESTDIR" "/")))))) + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'disable-gtk-update-icon-cache + (lambda _ + (substitute* "meson.build" + (("gtk_update_icon_cache: true") + "gtk_update_icon_cache: false")))) + (add-after 'install 'wrap-program + (lambda _ + (let ((prog (string-append #$output "/bin/sound-juicer")) + (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH"))) + (wrap-program prog + `("GST_PLUGIN_SYSTEM_PATH" + ":" prefix (,gst-plugin-path))))))))) (native-inputs (list desktop-file-utils gettext-minimal @@ -11457,7 +11467,8 @@ and uncluttered interface for the management of password databases.") pkg-config python)) (inputs - (list brasero + (list bash-minimal + brasero gsettings-desktop-schemas gst-plugins-base gst-plugins-good |