[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
- branch master updated (d431b23 -> f856fcb), Ludovic Courtès, 2015/11/03
- 01/08: doc: Explain that 'guix publish' relies on the key pair., Ludovic Courtès, 2015/11/03
- 03/08: Update NEWS., Ludovic Courtès, 2015/11/03
- 02/08: gnu: cmake: Download over HTTPS.,
Ludovic Courtès <=
- 04/08: gnu: guile-ncurses: Mask test failure with ncurses 6.0., Ludovic Courtès, 2015/11/03
- 06/08: import: pypi: Add missing copyright line., Ludovic Courtès, 2015/11/03
- 07/08: import: pypi: Make downloads silent., Ludovic Courtès, 2015/11/03
- 05/08: doc: Fix typos., Ludovic Courtès, 2015/11/03
- 08/08: build-system/python: 'package-with-python2' preserves source location., Ludovic Courtès, 2015/11/03