diff options
author | Leo Famulari <leo@famulari.name> | 2020-12-15 02:54:44 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2020-12-15 03:01:28 -0500 |
commit | c33df8ab95d391de79557cc20058299c9eac4a01 (patch) | |
tree | fadcf7200bffe04aa5f22c3fe5a3cba15e983778 /gnu/packages | |
parent | 54d832680652faa23711ec326462f9a62645080d (diff) |
gnu: ffmpeg-2.8: Remove extraneous inputs.
These inputs are not used by FFmpeg 2.
* gnu/packages/video.scm (ffmpeg-2.8)[inputs]: Remove dav1d, libaom,
rav1e, and srt.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/video.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 94abbe06d5..d47241dfbe 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1702,7 +1702,10 @@ audio/video codec library.") (path (string-join (map dirname dso) ":"))) (format #t "setting LD_LIBRARY_PATH to ~s~%" path) (setenv "LD_LIBRARY_PATH" path) - #t)))))))) + #t)))))) + (inputs (fold alist-delete + (package-inputs ffmpeg) + '("dav1d" "libaom" "rav1e" "srt"))))) (define-public ffmpeg-for-stepmania (hidden-package |