aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-03-15 18:48:24 +0000
committerChristopher Baines <mail@cbaines.net>2020-03-15 21:00:11 +0000
commitabab9206fc2b0755116bdd874bf2d4565a2fd4fb (patch)
treef5f50e4a5e4814d379abd3726e37619fde800590
parent5a135cc0f49f955b8fa0775de45d5ab41d8ed9f5 (diff)
downloadguix-abab9206fc2b0755116bdd874bf2d4565a2fd4fb.tar
guix-abab9206fc2b0755116bdd874bf2d4565a2fd4fb.tar.gz
lint: Mark the derivation checker as requiring a store connection.
* guix/lint.scm (%local-checkers): Mark the derivation checker as requiring a store connection.
-rw-r--r--guix/lint.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/guix/lint.scm b/guix/lint.scm
index 2a084382c6..b20510b45d 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1330,9 +1330,10 @@ or a list thereof")
(description "Check for autogenerated tarballs")
(check check-source-unstable-tarball))
(lint-checker
- (name 'derivation)
- (description "Report failure to compile a package to a derivation")
- (check check-derivation))
+ (name 'derivation)
+ (description "Report failure to compile a package to a derivation")
+ (check check-derivation)
+ (requires-store? #t))
(lint-checker
(name 'patch-file-names)
(description "Validate file names and availability of patches")