From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33429) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jDaTP-0005lA-NH for guix-patches@gnu.org; Sun, 15 Mar 2020 17:07:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jDaTO-00087l-Qd for guix-patches@gnu.org; Sun, 15 Mar 2020 17:07:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57968) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jDaTO-00087A-NK for guix-patches@gnu.org; Sun, 15 Mar 2020 17:07:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jDaTO-0000Av-Ie for guix-patches@gnu.org; Sun, 15 Mar 2020 17:07:02 -0400 Subject: [bug#38754] [PATCH 2/4] lint: Mark the derivation checker as requiring a store connection. Resent-Message-ID: From: Christopher Baines Date: Sun, 15 Mar 2020 21:06:29 +0000 Message-Id: <20200315210631.5334-2-mail@cbaines.net> In-Reply-To: <20200315210631.5334-1-mail@cbaines.net> References: <87lfqsxsxn.fsf@gnu.org> <20200315210631.5334-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38754@debbugs.gnu.org * 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 2a084382c6..b20510b45d 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -1330,9 +1330,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") -- 2.25.0