gnu: liba52: Fix source URI.

* gnu/packages/video.scm (liba52): Fix the source URI; SourceForge mirror URIs
  don't work for this project presumably because it's misconfigured.
master
Taylan Ulrich Bayırlı/Kammer 2015-03-18 10:52:37 +01:00
parent f222664058
commit 8c056935e8
1 changed files with 5 additions and 2 deletions

View File

@ -77,8 +77,11 @@
(version "0.7.4")
(source (origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/liba52/a52dec-"
version ".tar.gz"))
(uri (string-append
;; A mirror://sourceforge URI doesn't work, presumably
;; because the SourceForge project is misconfigured.
"http://liba52.sourceforge.net/files/a52dec-" version
".tar.gz"))
(sha256
(base32
"0czccp4fcpf2ykp16xcrzdfmnircz1ynhls334q374xknd5747d2"))))