guix-commits
[Top][All Lists]
Advanced

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

02/08: gnu: cmake: Download over HTTPS.


From: Ludovic Courtès
Subject: 02/08: gnu: cmake: Download over HTTPS.
Date: Tue, 03 Nov 2015 23:12:38 +0000

civodul pushed a commit to branch master
in repository guix.

commit 4ebdefc07a852842b5c9ff816bd8ed73ea7c9775
Author: Ludovic Courtès <address@hidden>
Date:   Tue Nov 3 22:39:18 2015 +0100

    gnu: cmake: Download over HTTPS.
    
    Reported by Gxsdnewb on #guix.
    
    * gnu/packages/cmake.scm (cmake)[source]: Use 'https' URL.
---
 gnu/packages/cmake.scm |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index 9b8ebde..a58284b 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -39,12 +39,12 @@
     (version "3.3.2")
     (source (origin
              (method url-fetch)
-             (uri (string-append
-                   "http://www.cmake.org/files/v";
-                   (version-major+minor version)
-                   "/cmake-" version ".tar.gz"))
+             (uri (string-append "https://www.cmake.org/files/v";
+                                 (version-major+minor version)
+                                 "/cmake-" version ".tar.gz"))
              (sha256
-              (base32 "08pwy9ip9cgwgynhn5vrjw8drw29gijy1rmziq22n65zds6ifnp7"))
+              (base32
+               "08pwy9ip9cgwgynhn5vrjw8drw29gijy1rmziq22n65zds6ifnp7"))
              (patches (list (search-patch "cmake-fix-tests.patch")))))
     (build-system gnu-build-system)
     (arguments



reply via email to

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