diff options
author | Leo Famulari <leo@famulari.name> | 2017-07-22 18:50:29 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-08-27 18:24:49 -0400 |
commit | 5f13bf0972310dfd5e2f26a4adc8b5aab4be7407 (patch) | |
tree | 4a6775203a82cfae0b94505e185346ea4982cb0a /gnu/packages/embedded.scm | |
parent | ad539230f16718ccc5883cfe4fe66260f265a333 (diff) | |
download | guix-5f13bf0972310dfd5e2f26a4adc8b5aab4be7407.tar.gz |
gnu: Fetch several Git sources over HTTPS.
* gnu/packages/admin.scm (interrobang)[source]: Use HTTPS URL. * gnu/packages/audio.scm (ardour)[source]: Likewise. * gnu/packages/embedded.scm (libjaylink, openocd)[source]: Likewise. * gnu/packages/gnome.scm (byzanz)[source]: Likewise. * gnu/packages/gnunet.scm (guile-gnunet)[source]Likewise. * gnu/packages/java.scm (classpath)[source]: Likewise. * gnu/packages/microcom.scm (microcom)[source]: Likewise. * gnu/packages/python.scm (python-axolotl-curve25519)[source]: Likewise. * gnu/packages/rdesktop.scm (freerdp)[source]: Likewise. * gnu/packages/shells.scm (rc)[source]: Likewise. * gnu/packages/web.scm (libwebsockets)[source]: Use new source URL.
Diffstat (limited to 'gnu/packages/embedded.scm')
-rw-r--r-- | gnu/packages/embedded.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index 1f7176ae78..5e51fe2d01 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -299,7 +299,7 @@ languages are C and C++.") (source (origin (method git-fetch) (uri (git-reference - (url "git://git.zapb.de/libjaylink.git") + (url "https://git.zapb.de/libjaylink.git") (commit commit))) (file-name (string-append name "-" version "-checkout")) (sha256 @@ -365,7 +365,7 @@ language.") (source (origin (method git-fetch) (uri (git-reference - (url "git://git.code.sf.net/p/openocd/code.git") + (url "https://git.code.sf.net/p/openocd/code.git") (commit commit))) (sha256 (base32 |