summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-03-15 18:48:24 +0000
committerChristopher Baines <mail@cbaines.net>2020-03-24 19:47:46 +0000
commitd84ad6a24ed0a51f72db0a17df093e79cd600f6d (patch)
tree4f076ef313a9819ab43cfd3102e781b472ea794e
parent3874dc5ef2e0d301dc708bf433e13362e0759a0a (diff)
downloadpatches-d84ad6a24ed0a51f72db0a17df093e79cd600f6d.tar
patches-d84ad6a24ed0a51f72db0a17df093e79cd600f6d.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 a324858f68..631ba3b59d 100644
--- a/guix/lint.scm
+++ b/guix/lint.scm
@@ -1331,9 +1331,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")