lint: Mark the derivation checker as requiring a store connection.

* guix/lint.scm (%local-checkers): Mark the derivation checker as requiring a
store connection.
This commit is contained in:
Christopher Baines 2020-03-15 18:48:24 +00:00
parent 3874dc5ef2
commit d84ad6a24e
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577

View File

@ -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")