diff options
author | Christopher Baines <mail@cbaines.net> | 2020-03-15 18:48:24 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-03-24 19:47:46 +0000 |
commit | d84ad6a24ed0a51f72db0a17df093e79cd600f6d (patch) | |
tree | 4f076ef313a9819ab43cfd3102e781b472ea794e /guix/lint.scm | |
parent | 3874dc5ef2e0d301dc708bf433e13362e0759a0a (diff) |
lint: Mark the derivation checker as requiring a store connection.
* guix/lint.scm (%local-checkers): Mark the derivation checker as requiring a
store connection.
Diffstat (limited to 'guix/lint.scm')
-rw-r--r-- | guix/lint.scm | 7 |
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") |