diff options
author | Ludovic Courtès <ludo@gnu.org> | 2018-11-04 23:57:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-11-05 00:08:47 +0100 |
commit | 688d1a01e45eb1277a6337987bfd53f3fe3caaec (patch) | |
tree | 421fcd52bfb4958a7d9cc3d43437f27505f9b068 /gnu/artwork.scm | |
parent | ab3c60ace3bdd376255463c6475b62f6d17e5978 (diff) | |
download | patches-688d1a01e45eb1277a6337987bfd53f3fe3caaec.tar patches-688d1a01e45eb1277a6337987bfd53f3fe3caaec.tar.gz |
artwork: Clone over HTTPS.
Suggested by Leo Famulari <leo@famulari.name>
at <https://lists.gnu.org/archive/html/help-guix/2018-11/msg00039.html>.
* gnu/artwork.scm (%artwork-repository): Switch to HTTPS URL.
Diffstat (limited to 'gnu/artwork.scm')
-rw-r--r-- | gnu/artwork.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/artwork.scm b/gnu/artwork.scm index 92498b8b23..35bfd0f967 100644 --- a/gnu/artwork.scm +++ b/gnu/artwork.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2014, 2015, 2018 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> ;;; ;;; This file is part of GNU Guix. @@ -33,7 +33,7 @@ (origin (method git-fetch) (uri (git-reference - (url "git://git.savannah.gnu.org/guix/guix-artwork.git") + (url "https://git.savannah.gnu.org/git/guix/guix-artwork.git") (commit commit))) (file-name (string-append "guix-artwork-" (string-take commit 7) "-checkout")) |