guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/06: gnu: liba52: Fix source URI.


From: Taylan Ulrich B.
Subject: 01/06: gnu: liba52: Fix source URI.
Date: Thu, 19 Mar 2015 09:00:00 +0000

taylanub pushed a commit to branch master
in repository guix.

commit 8c056935e899f7b5eca514990012d08578a47a42
Author: Taylan Ulrich Bayırlı/Kammer <address@hidden>
Date:   Wed Mar 18 10:52:37 2015 +0100

    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.
---
 gnu/packages/video.scm |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index b1c0c52..ce26812 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -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"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]