mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: libvpx: Update to 1.9.0.
* gnu/packages/video.scm (libvpx): Update to 1.9.0.
This commit is contained in:
parent
210b5282b0
commit
2f702f2d1f
1 changed files with 7 additions and 4 deletions
|
@ -2129,9 +2129,8 @@ (define-public mpv-mpris
|
|||
(define-public libvpx
|
||||
(package
|
||||
(name "libvpx")
|
||||
(version "1.8.2")
|
||||
(version "1.9.0")
|
||||
(source (origin
|
||||
;; XXX: Upstream does not provide tarballs for > 1.6.1.
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://chromium.googlesource.com/webm/libvpx")
|
||||
|
@ -2139,7 +2138,7 @@ (define-public libvpx
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0gyq4fkbd2fv7m1mm9xrvn6rk6f4jsmbv8bnlhingmnrvyncnmnr"))
|
||||
"16xv6ambc82g14h1y0q1vyy57wp6j9fbp0nk0wd5csnrw407rhry"))
|
||||
(patches (search-patches "libvpx-CVE-2016-2818.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
|
@ -2157,7 +2156,11 @@ (define-public libvpx
|
|||
;; The configure script does not understand some of the GNU
|
||||
;; options, so we only add the flags specified above.
|
||||
(apply invoke "./configure" configure-flags))))
|
||||
#:tests? #f)) ; no check target
|
||||
|
||||
;; XXX: The test suite wants to download 871 files from a cloud storage
|
||||
;; service (see test/test-data.sha1). It is possible to specify a
|
||||
;; custom directory, but there seems to be no tarball with all files.
|
||||
#:tests? #f))
|
||||
(native-inputs
|
||||
`(("perl" ,perl)
|
||||
("yasm" ,yasm)))
|
||||
|
|
Loading…
Reference in a new issue