diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-12-28 17:55:16 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-28 17:57:36 +0100 |
commit | a3bf096945b9e429f0fc5e2de4fb537ec5b1a587 (patch) | |
tree | a3690c76e82d1b49e710b7629d82bc45d0ff71d5 /guix/build | |
parent | f9930cfaabe631e2b90f4ee3d30b149f0e3aaae4 (diff) | |
download | gnu-guix-a3bf096945b9e429f0fc5e2de4fb537ec5b1a587.tar gnu-guix-a3bf096945b9e429f0fc5e2de4fb537ec5b1a587.tar.gz |
lint: Add 'home-page' checker.
* guix/build/download.scm (open-connection-for-uri): Export.
* guix/scripts/lint.scm (probe-uri, check-home-page): New procedures.
(%checkers): Add 'home-page' checker.
Diffstat (limited to 'guix/build')
-rw-r--r-- | guix/build/download.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/build/download.scm b/guix/build/download.scm index 26b497d458..bb7e4601fd 100644 --- a/guix/build/download.scm +++ b/guix/build/download.scm @@ -28,7 +28,8 @@ #:use-module (srfi srfi-26) #:use-module (ice-9 match) #:use-module (ice-9 format) - #:export (url-fetch + #:export (open-connection-for-uri + url-fetch progress-proc uri-abbreviation)) |