diff options
author | David Craven <david@craven.ch> | 2016-08-01 16:13:40 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-02 13:29:24 +0200 |
commit | 8f9d70fcb9b55aea56515e2f4f55351ff544022a (patch) | |
tree | 9b8b9afc8cb088e93c435991b16993f3a7cff958 | |
parent | 9c97afe8588d4e822676d278e251247d1476df7c (diff) | |
download | guix-8f9d70fcb9b55aea56515e2f4f55351ff544022a.tar.gz |
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.
-rw-r--r-- | guix/scripts/lint.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index 8aab1febb2..51191e7e7b 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) |