diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-07-12 15:42:26 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-07-12 17:21:15 +0200 |
commit | 03229b36e025175d0d505538e5c5405fa8e23e8b (patch) | |
tree | f153bf281f94984ce733f1afdc75c77e3f80c539 /gnu | |
parent | 9b76037e2c9e2f33985991cce2d0714ee3dfa0da (diff) | |
download | patches-03229b36e025175d0d505538e5c5405fa8e23e8b.tar patches-03229b36e025175d0d505538e5c5405fa8e23e8b.tar.gz |
gnu: openh264: Update to 1.8.0.
* gnu/packages/video.scm (openh264): Update to 1.8.0.
[source](uri): Use release tarball.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/video.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 737844d8fa..1cc0d5dfde 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -2410,15 +2410,16 @@ of modern, widely supported codecs.") (define-public openh264 (package (name "openh264") - (version "1.7.0") + (version "1.8.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/cisco/" - name "/archive/v" version ".tar.gz")) + name "/releases/download/v" + version "/Source.Code.tar.gz.gz")) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0gv571bqkxk7ic64dmavs1q8nr7p59mcf4ibqp4lc070gn6w61ww")))) + "0niha3wnn1jsndvz9vfwy2wyql8mp9j6v75vjsipy0idwan5yzgf")))) (build-system gnu-build-system) (native-inputs `(("nasm" ,nasm) |