summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-06-05 17:24:10 -0400
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2021-06-06 02:38:29 -0400
commit6a0d0c3c473d51d113d0c4efd7ed85d542f45c09 (patch)
tree5f94c9936a6ffd4c638221ed69e830d2c9912b27 /gnu/packages
parent30eccefa398ee05fa372efb5ae16db1cc7c0fc59 (diff)
downloadguix-patches-6a0d0c3c473d51d113d0c4efd7ed85d542f45c09.tar
guix-patches-6a0d0c3c473d51d113d0c4efd7ed85d542f45c09.tar.gz
gnu: libopenshot: Use ffmpeg-4.3.
* gnu/packages/video.scm (libopenshot) [propagated-inputs]{ffmpeg}: Downgrade to ffmpeg 4.3 to fix build.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/video.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index f3a0436786..e01594fb28 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -4494,7 +4494,9 @@ create smoother and stable videos.")
("unittest++" ,unittest-cpp)))
(propagated-inputs ;all referenced in installed headers
`(("cppzmq" ,cppzmq)
- ("ffmpeg" ,ffmpeg)
+ ;; libopenshot doesn't yet build with ffmpeg 4.4 (see:
+ ;; https://github.com/OpenShot/libopenshot/issues/676).
+ ("ffmpeg" ,ffmpeg-4.3)
("imagemagick" ,imagemagick)
("jsoncpp" ,jsoncpp)
("libopenshot-audio" ,libopenshot-audio)