summaryrefslogtreecommitdiff
path: root/gnu/packages/databases.scm
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2020-07-16 19:01:03 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2020-07-16 20:12:07 +0200
commit7fc2ba2a2cfb6568a2067e62c966fe35a7ed9bde (patch)
tree64d8f54261d403246142884f1cdda830c3331e13 /gnu/packages/databases.scm
parentc4944d6c81b7b803deba79661eea76ec4179bf69 (diff)
downloadguix-patches-7fc2ba2a2cfb6568a2067e62c966fe35a7ed9bde.tar
guix-patches-7fc2ba2a2cfb6568a2067e62c966fe35a7ed9bde.tar.gz
gnu: kyotocabinet: Use HTTPS.
* gnu/packages/databases.scm (kyotocabinet)[source, home-page]: Use HTTPS.
Diffstat (limited to 'gnu/packages/databases.scm')
-rw-r--r--gnu/packages/databases.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 55fc4f8850..0e6ad4e291 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -1976,8 +1976,8 @@ sets, bitmaps and hyperloglogs.")
(version "1.2.77")
(source (origin
(method url-fetch)
- (uri (string-append "http://fallabs.com/kyotocabinet/pkg/"
- name "-" version ".tar.gz"))
+ (uri (string-append "https://fallabs.com/kyotocabinet/pkg/"
+ "kyotocabinet-" version ".tar.gz"))
(sha256
(base32
"1rlx4307adbzd842b4npq6cwlw8h010ingxaz3qz1ijc70lr72an"))))
@@ -1989,7 +1989,7 @@ sets, bitmaps and hyperloglogs.")
(string-append "LDFLAGS=-Wl,-rpath="
(assoc-ref %outputs "out") "/lib"))))
(inputs `(("zlib" ,zlib)))
- (home-page "http://fallabs.com/kyotocabinet/")
+ (home-page "https://fallabs.com/kyotocabinet/")
(synopsis
"Kyoto Cabinet is a modern implementation of the DBM database")
(description