guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/04: lint: Mark the derivation checker as requiring a store connection


From: guix-commits
Subject: 02/04: lint: Mark the derivation checker as requiring a store connection.
Date: Tue, 24 Mar 2020 15:47:55 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit d84ad6a24ed0a51f72db0a17df093e79cd600f6d
Author: Christopher Baines <address@hidden>
AuthorDate: Sun Mar 15 18:48:24 2020 +0000

    lint: Mark the derivation checker as requiring a store connection.
    
    * guix/lint.scm (%local-checkers): Mark the derivation checker as requiring 
a
    store connection.
---
 guix/lint.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/guix/lint.scm b/guix/lint.scm
index a324858..631ba3b 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]