guix-commits
[Top][All Lists]
Advanced

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

04/05: lint: 'inputs-should-be-native' checks for extra-cmake-modules an


From: David Craven
Subject: 04/05: lint: 'inputs-should-be-native' checks for extra-cmake-modules and qttools.
Date: Tue, 2 Aug 2016 11:50:21 +0000 (UTC)

dvc pushed a commit to branch master
in repository guix.

commit 8f9d70fcb9b55aea56515e2f4f55351ff544022a
Author: David Craven <address@hidden>
Date:   Mon Aug 1 16:13:40 2016 +0200

    lint: 'inputs-should-be-native' checks for extra-cmake-modules and qttools.
    
    * guix/scripts/lint.scm (check-inputs-should-be-native): Warn when
      extra-cmake-modules or qttools isn't a native-input.
---
 guix/scripts/lint.scm |    8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm
index 8aab1fe..51191e7 100644
--- a/guix/scripts/lint.scm
+++ b/guix/scripts/lint.scm
@@ -205,7 +205,13 @@ by two spaces; possible infraction~p at ~{~a~^, ~}")
   ;; native inputs.
   (let ((linted package)
         (inputs (package-inputs package))
-        (native-inputs '("pkg-config" "glib:bin" "intltool" "itstool")))
+        (native-inputs
+          '("pkg-config"
+            "extra-cmake-modules"
+            "glib:bin"
+            "intltool"
+            "itstool"
+            "qttools")))
     (match inputs
       (((labels packages . outputs) ...)
        (for-each (lambda (package output)



reply via email to

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