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.
master
David Craven 2016-08-01 16:13:40 +02:00
parent 9c97afe858
commit 8f9d70fcb9
No known key found for this signature in database
GPG Key ID: C5E051C79C0BECDB
1 changed files with 7 additions and 1 deletions

View File

@ -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)