guix-commits
[Top][All Lists]
Advanced

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

03/03: gnu: pkg-config: Add non-HTTPS alternate URL.


From: Ludovic Courtès
Subject: 03/03: gnu: pkg-config: Add non-HTTPS alternate URL.
Date: Mon, 22 Feb 2016 21:12:51 +0000

civodul pushed a commit to branch master
in repository guix.

commit 8b16a5e1996bd9ec66915f84beaac6d34cb0f353
Author: Ludovic Courtès <address@hidden>
Date:   Mon Feb 22 22:11:03 2016 +0100

    gnu: pkg-config: Add non-HTTPS alternate URL.
    
    * gnu/packages/pkg-config.scm (%pkg-config)[source]: Add non-HTTPS URL.
---
 gnu/packages/pkg-config.scm |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/pkg-config.scm b/gnu/packages/pkg-config.scm
index 5923395..d7cc454 100644
--- a/gnu/packages/pkg-config.scm
+++ b/gnu/packages/pkg-config.scm
@@ -33,9 +33,17 @@
    (version "0.29")
    (source (origin
             (method url-fetch)
-            (uri (string-append
-                  "http://pkgconfig.freedesktop.org/releases/pkg-config-";
-                  version ".tar.gz"))
+            (uri (list
+                  (string-append
+                   "http://fossies.org/linux/misc/pkg-config-"; version
+                   ".tar.gz")
+
+                  ;; FIXME: The following URL redirects to HTTPS, which
+                  ;; creates bootstrapping problems:
+                  ;; <http://bugs.gnu.org/22774>.
+                  (string-append
+                   "http://pkgconfig.freedesktop.org/releases/pkg-config-";
+                   version ".tar.gz")))
             (sha256
              (base32
               "0sq09a39wj4cxf8l2jvkq067g08ywfma4v6nhprnf351s82pfl68"))))



reply via email to

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