diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2021-01-08 18:13:56 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2021-01-08 18:13:56 +0100 |
commit | 789dcf5bc43d970b1676e94239a34dfbf699490f (patch) | |
tree | 8195a38dd63b27e815d3dfde2f126e7858582876 /gnu/packages | |
parent | bc8ea17b330deb65ab8031927833ca2f7a4e05f8 (diff) | |
download | guix-789dcf5bc43d970b1676e94239a34dfbf699490f.tar.gz |
gnu: emacs-emms: Fix vorbiscomment path.
* gnu/packages/emacs-xyz.scm (emacs-emms)[arguments]: Replace call to "vorbiscomment" by its full store path.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 962744263a..209a0da289 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -1720,7 +1720,9 @@ light user interface.") (string-append "\"" alsa "/bin/amixer\""))) (substitute* "emms-tag-editor.el" (("\"mid3v2\"") - (string-append "\"" mutagen "/bin/mid3v2\""))) + (string-append "\"" mutagen "/bin/mid3v2\"")) + (("\"vorbiscomment\"") + (string-append "\"" vorbis "/bin/vorbiscomment\""))) (substitute* "emms-info-exiftool.el" (("\"exiftool\"") (string-append "\"" exiftool "/bin/exiftool\""))) |