diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-07-18 22:46:47 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-07-18 22:46:47 +0200 |
commit | ec5c24f9a8421172a0cf9133d512014b31815a76 (patch) | |
tree | eb914756243d08075d756b5189adcbc3bdc42f69 /gnu/packages | |
parent | 5058bf56843baf3c0d82fbf0addbb30f00572428 (diff) |
gnu: totem: Disable automatic plugin installation.
* gnu/packages/gnome.scm (totem)[arguments]: Add #:configure-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c753b297d1..c959d54da6 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3493,7 +3493,11 @@ for application developers.") ("nettle" ,nettle) ("vala" ,vala))) (arguments - `(#:phases + `(;; Disable automatic GStreamer plugin installation via PackageKit and + ;; all that. + #:configure-flags '("--disable-easy-codec-installation") + + #:phases (modify-phases %standard-phases (add-after 'install 'wrap-totem |