diff options
author | Vincent Legoll <vincent.legoll@gmail.com> | 2020-04-04 12:08:07 +0200 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2020-04-04 12:45:36 +0200 |
commit | d6f1f60721f36a333f8bd0696c81126c92dcd1b8 (patch) | |
tree | a7eb2dc548e0fd43fee037fad61b1479fbf0d73f | |
parent | 5f98b84cd95480b392d4e86b437259c57d07c568 (diff) |
gnu: ell: Make some inputs native.
* gnu/packages/linux.scm (ell)[inputs]: Move libtool from here...
[native-inputs]: ...to here.
Signed-off-by: Mathieu Othacehe <m.othacehe@gmail.com>
-rw-r--r-- | gnu/packages/linux.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 9fd6569c9a..c8acb42352 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -6619,10 +6619,10 @@ of Linux application development.") (("/usr/bin/dbus-daemon") (which "dbus-daemon"))) #t))))) (inputs - `(("dbus" ,dbus) - ("libtool" ,libtool))) + `(("dbus" ,dbus))) (native-inputs `(("autoconf" ,autoconf) + ("libtool" ,libtool) ("pkgconfig" ,pkg-config) ("automake" ,automake))) (home-page "https://01.org/ell") |