aboutsummaryrefslogtreecommitdiff
path: root/guix/download.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-10-20 09:32:05 +0200
committerLudovic Courtès <ludo@gnu.org>2020-10-20 16:30:15 +0200
commitd154462bd83b7a9df0a7e84fe4d9e0759b97bef3 (patch)
tree815ffcd8b4358146c85106ce48937438273f12e7 /guix/download.scm
parent6ea61b4818b355cab66e4f0931ce0314368e4abb (diff)
downloadguix-d154462bd83b7a9df0a7e84fe4d9e0759b97bef3.tar
guix-d154462bd83b7a9df0a7e84fe4d9e0759b97bef3.tar.gz
download: Update docstring.
* guix/download.scm (url-fetch): Update docstring to match what's in the manual.
Diffstat (limited to 'guix/download.scm')
-rw-r--r--guix/download.scm14
1 files changed, 7 insertions, 7 deletions
diff --git a/guix/download.scm b/guix/download.scm
index 6622e252b4..c24e0132c7 100644
--- a/guix/download.scm
+++ b/guix/download.scm
@@ -463,17 +463,17 @@ download by itself using its own dependencies."
#:key (system (%current-system))
(guile (default-guile))
executable?)
- "Return a fixed-output derivation that fetches URL (a string, or a list of
-strings denoting alternate URLs), which is expected to have hash HASH of type
-HASH-ALGO (a symbol). By default, the file name is the base name of URL;
-optionally, NAME can specify a different file name. When EXECUTABLE? is true,
-make the downloaded file executable.
+ "Return a fixed-output derivation that fetches data from URL (a string, or a
+list of strings denoting alternate URLs), which is expected to have hash HASH
+of type HASH-ALGO (a symbol). By default, the file name is the base name of
+URL; optionally, NAME can specify a different file name. When EXECUTABLE? is
+true, make the downloaded file executable.
When one of the URL starts with mirror://, then its host part is
interpreted as the name of a mirror scheme, taken from %MIRROR-FILE.
-Alternately, when URL starts with file://, return the corresponding file name
-in the store."
+Alternatively, when URL starts with file://, return the corresponding file
+name in the store."
(define file-name
(match url
((head _ ...)