lint: Mark the derivation checker as requiring a store connection.
authorChristopher Baines <mail@cbaines.net>
Sun, 15 Mar 2020 18:48:24 +0000 (18:48 +0000)
committerChristopher Baines <mail@cbaines.net>
Tue, 24 Mar 2020 19:47:46 +0000 (19:47 +0000)
* guix/lint.scm (%local-checkers): Mark the derivation checker as requiring a
store connection.

guix/lint.scm

index a324858..631ba3b 100644 (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")