* 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