[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: VLC: Update to 3.0.3-1 [fixes CVE-2018-11529].
From: |
Leo Famulari |
Subject: |
01/01: gnu: VLC: Update to 3.0.3-1 [fixes CVE-2018-11529]. |
Date: |
Wed, 18 Jul 2018 19:50:26 -0400 (EDT) |
lfam pushed a commit to branch master
in repository guix.
commit 324c049ff68997415785719fd3216cc98b6a8551
Author: Leo Famulari <address@hidden>
Date: Wed Jul 18 19:38:49 2018 -0400
gnu: VLC: Update to 3.0.3-1 [fixes CVE-2018-11529].
* gnu/packages/video.scm (vlc): Update to 3.0.3-1.
---
gnu/packages/video.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 749d7e6..820a7fc 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -820,15 +820,16 @@ audio/video codec library.")
(define-public vlc
(package
(name "vlc")
- (version "3.0.3")
+ (version "3.0.3-1")
(source (origin
(method url-fetch)
(uri (string-append
"https://download.videolan.org/pub/videolan/vlc/"
- version "/vlc-" version ".tar.xz"))
+ (car (string-split version #\-))
+ "/vlc-" version ".tar.xz"))
(sha256
(base32
- "0lavzly8l0ll1d9iris9cnirgcs77g48lxj14058dxqkvd5v1a4v"))))
+ "1p7qvdvg9w4lz8vckzhn6bswfkq3qw7fqkgvwjcskdgc266xx7dw"))))
(build-system gnu-build-system)
(native-inputs
`(("flex" ,flex)