diff options
author | Jason Self <j@jxself.org> | 2014-11-08 07:50:55 -0800 |
---|---|---|
committer | Jason Self <j@jxself.org> | 2014-11-08 07:50:55 -0800 |
commit | bfdbaf779f6c42b9ea7336bc3bb66d70ec9bb313 (patch) | |
tree | be4ad3ba35b932aed349de556b6f328585381c73 /gnu/packages/video.scm | |
parent | 75058ecaeaabd77be882f2453607e152c03769d9 (diff) | |
download | guix-bfdbaf779f6c42b9ea7336bc3bb66d70ec9bb313.tar guix-bfdbaf779f6c42b9ea7336bc3bb66d70ec9bb313.tar.gz |
gnu: ffmpeg-2.2: Update to 2.2.10.
* gnu/packages/video.scm (ffmpeg-2.2): Update to version 2.2.10.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index ca90386900..7ec1537678 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -199,14 +199,14 @@ audio/video codec library.") ;; We need this older ffmpeg because vlc-2.1.5 doesn't work with ffmpeg-2.4. (define-public ffmpeg-2.2 (package (inherit ffmpeg) - (version "2.2.9") + (version "2.2.10") (source (origin (method url-fetch) (uri (string-append "http://www.ffmpeg.org/releases/ffmpeg-" version ".tar.bz2")) (sha256 (base32 - "0fbjszysnab6yfrv4dpa8yqjin6hcy1zs4i1wa8782bq3pc1529y")))))) + "14d83ijp5lxdr6nl9rqhc4598jp020paxrg64r9ifxqhbigl0yqm")))))) (define-public vlc (package |