diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-12-06 22:43:31 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-12-07 07:33:23 +0200 |
commit | 4ff71cac67a2d697e631a3b35a5a7f5db2c7a240 (patch) | |
tree | 93a5893507315fbfb15e07edd44cdf3b247b09a9 /gnu/packages/video.scm | |
parent | 425fabfc9a322c26f9dcd83ec61e2c6f5f6c7750 (diff) | |
download | guix-4ff71cac67a2d697e631a3b35a5a7f5db2c7a240.tar guix-4ff71cac67a2d697e631a3b35a5a7f5db2c7a240.tar.gz |
gnu: libx264: Update to 20161205-2245.
* gnu/packages/video.scm (libx264): Update to 20161205-2245.
[source]: Use https.
[home-page]: Same.
Diffstat (limited to 'gnu/packages/video.scm')
-rw-r--r-- | gnu/packages/video.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index ce13298df8..acacaea15d 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -213,14 +213,14 @@ television and DVD. It is also known as AC-3.") (define-public libx264 (package (name "libx264") - (version "20160220-2245") + (version "20161205-2245") (source (origin (method url-fetch) - (uri (string-append "http://download.videolan.org/pub/x264/snapshots/" + (uri (string-append "https://download.videolan.org/pub/x264/snapshots/" "x264-snapshot-" version ".tar.bz2")) (sha256 (base32 - "12zyzbiihfhamf7yi4qqaj6k0nisnrydvfr36kxadvmsm7dg4sj3")))) + "0jjzdwag59kqlk09bb2pykm1ss8bw3p9q7bsks2kjgdwbj121a44")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) @@ -246,7 +246,7 @@ television and DVD. It is also known as AC-3.") (%current-system))) '("--disable-asm") '())))) - (home-page "http://www.videolan.org/developers/x264.html") + (home-page "https://www.videolan.org/developers/x264.html") (synopsis "H.264 video coding library") (description "libx264 is an advanced encoding library for creating H.264 (MPEG-4 AVC) video streams.") |