diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-24 23:38:07 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-28 20:15:57 -0400 |
commit | d624cd4c842a0e47ed3670ecb2a65b69cdccea63 (patch) | |
tree | 79078d7ed2e3352915552c6f6492d2c2b799513c /gnu/packages/jami.scm | |
parent | 30f0fd2176f966a7dbce9b78e089d252b14dbdba (diff) |
gnu: ffmpeg-5: Rename variable to ffmpeg.
* gnu/packages/video.scm (ffmpeg-5): Rename to...
(ffmpeg): ... this, replacing the old 'ffmpeg' alias.
(ffmpeg-4): Adjust accordingly.
* gnu/packages/jami.scm (ffmpeg-jami): Likewise.
Diffstat (limited to 'gnu/packages/jami.scm')
-rw-r--r-- | gnu/packages/jami.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/jami.scm b/gnu/packages/jami.scm index 4e8d36ca96..65607249ba 100644 --- a/gnu/packages/jami.scm +++ b/gnu/packages/jami.scm @@ -349,7 +349,7 @@ (define-public ffmpeg-jami (package - (inherit ffmpeg-5) + (inherit ffmpeg) (name "ffmpeg-jami") ;; XXX: Use a slightly older version, otherwise the ;; 'libopusdec-enable-FEC' patch doesn't apply. @@ -363,7 +363,7 @@ "0yq0jcdc4qm5znrzylj3dsicrkk2n3n8bv28vr0a506fb7iglbpg")))) (outputs '("out" "debug")) (arguments - (substitute-keyword-arguments (package-arguments ffmpeg-5) + (substitute-keyword-arguments (package-arguments ffmpeg) ((#:configure-flags _ '()) #~(cons* "--disable-static" "--enable-shared" |