diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-05-18 14:03:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-05-18 14:22:03 +0200 |
commit | 27c81fcb8671db0c000f4ed182e7ea55cdc0768f (patch) | |
tree | 1e8b744a0013a31b358425ccc8ef55efe3bd4dfd /guix/scripts | |
parent | 2b18ad054cf5a09582bc96ac7755452e7a5924e1 (diff) |
lint: inputs-should-be-native: Add "cmake".
Suggested by Nicolas Goaziou <mail@nicolasgoaziou.fr>.
* guix/scripts/lint.scm (check-inputs-should-be-native)[input-names]:
Add "cmake".
Diffstat (limited to 'guix/scripts')
-rw-r--r-- | guix/scripts/lint.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guix/scripts/lint.scm b/guix/scripts/lint.scm index f2720f669e..6f30d371a2 100644 --- a/guix/scripts/lint.scm +++ b/guix/scripts/lint.scm @@ -255,7 +255,8 @@ of a package, and INPUT-NAMES, a list of package specifications such as ;; native inputs. (let ((inputs (package-inputs package)) (input-names - '("pkg-config" + '("pkg-config" + "cmake" "extra-cmake-modules" "glib:bin" "intltool" |