guix-devel
[Top][All Lists]
Advanced

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

[PATCH 04/31] lint: 'inputs-should-be-native' checks for extra-cmake-mod


From: David Craven
Subject: [PATCH 04/31] lint: 'inputs-should-be-native' checks for extra-cmake-modules and qttools.
Date: Mon, 1 Aug 2016 20:13:15 +0200

* 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)
-- 
2.9.0



reply via email to

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