diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-01-09 16:32:16 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-01-09 23:15:04 +0100 |
commit | bbd9063afcb204b3f81c59d09f5c54d3b67f1e91 (patch) | |
tree | b70a381b635ba04d3f6aff596ae1840a5fe33a4e /guix | |
parent | 7edbaa7f658c4661a33516e988c58f8cc1baf4f9 (diff) |
lint: Check for more packages which should be native.
* guix/lint.scm (check-inputs-should-be-native): Add autoconf, automake,
bison, dejagnu, desktop-file-utils, doxygen, flex, gettext,
gobject-introspection, googletest-source, groff, help2man, libtool, swig,
qmake, qttools, texinfo, xorg-server-for-tests, yelp-tools.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/lint.scm | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/guix/lint.scm b/guix/lint.scm index e3544bd963..ed2f06bc64 100644 --- a/guix/lint.scm +++ b/guix/lint.scm @@ -286,11 +286,24 @@ of a package, and INPUT-NAMES, a list of package specifications such as (let ((inputs (package-inputs package)) (input-names '("pkg-config" + "autoconf" + "automake" + "bison" "cmake" + "dejagnu" + "desktop-file-utils" + "doxygen" "extra-cmake-modules" + "flex" + "gettext" "glib:bin" + "gobject-introspection" + "googletest-source" + "groff" + "help2man" "intltool" "itstool" + "libtool" "qttools" "yasm" "nasm" "fasm" "python-coverage" "python2-coverage" @@ -302,7 +315,13 @@ of a package, and INPUT-NAMES, a list of package specifications such as "python-pytest" "python2-pytest" "python-pytest-cov" "python2-pytest-cov" "python-setuptools-scm" "python2-setuptools-scm" - "python-sphinx" "python2-sphinx"))) + "python-sphinx" "python2-sphinx" + "swig" + "qmake" + "qttools" + "texinfo" + "xorg-server-for-tests" + "yelp-tools"))) (map (lambda (input) (make-warning package |