diff options
author | Alex Kost <alezost@gmail.com> | 2015-08-12 14:17:44 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-08-30 18:26:01 +0300 |
commit | 521a11e0a68b54bbacbb4912d622a29cfc86c153 (patch) | |
tree | e7993455b15c58e01cb8739dc2397950a1ca0d4d | |
parent | 6543601fa05b629b387d1da0b5fc5fe81ecaf24c (diff) | |
download | patches-521a11e0a68b54bbacbb4912d622a29cfc86c153.tar patches-521a11e0a68b54bbacbb4912d622a29cfc86c153.tar.gz |
guix lint: Export checkers and <lint-checker> accessors.
* guix/scripts/lint.scm (%checkers, lint-checker, lint-checker?,
lint-checker-name, lint-checker-description, lint-checker-check):
Export.
-rw-r--r-- | guix/scripts/lint.scm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index 14ac8cba81..41249b2d15 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -56,7 +56,14 @@ check-derivation check-home-page check-source - check-formatting)) + check-formatting + + %checkers + lint-checker + lint-checker? + lint-checker-name + lint-checker-description + lint-checker-check)) ;;; |