gnu: ffmpeg: Re-add 2.8.6.

* gnu/packages/video.scm (ffmpeg-2.8): New variable.
master
Ludovic Courtès 2016-04-18 11:26:30 +02:00
parent a7c61781df
commit 940778c71c
1 changed files with 20 additions and 0 deletions

View File

@ -536,6 +536,26 @@ convert and stream audio and video. It includes the libavcodec
audio/video codec library.")
(license license:gpl2+)))
(define-public ffmpeg-2.8
(package
(inherit ffmpeg)
(version "2.8.6")
(source (origin
(method url-fetch)
(uri (string-append "https://ffmpeg.org/releases/ffmpeg-"
version ".tar.xz"))
(sha256
(base32
"1yh7dvm7zwdlsspdaq524s5qaggma5md9h95qc4kvb5dmyyyvg15"))))
(arguments
(substitute-keyword-arguments (package-arguments ffmpeg)
((#:configure-flags flags)
`(map (lambda (flag)
(if (string=? flag "--disable-mipsdsp")
"--disable-mipsdspr1"
flag))
,flags))))))
(define-public vlc
(package
(name "vlc")