diff options
author | Nicolas Graves <[email protected]> | 2025-01-08 07:11:35 +0100 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:46 +0100 |
commit | f02121f036dedcad27cc061fb06e8d09e0de7752 (patch) | |
tree | 9675f11557f3a3437868dca6351568737c30f2de /gnu/packages/aidc.scm | |
parent | f3a897065a3bdf1ce58d74abdcc16601d59fb21f (diff) |
gnu: zbar: Improve style.
* gnu/packages/aidc.scm (zbar)[native-inputs, inputs]: Improve style.
Signed-off-by: Liliana Marie Prikler <[email protected]>
Diffstat (limited to 'gnu/packages/aidc.scm')
-rw-r--r-- | gnu/packages/aidc.scm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gnu/packages/aidc.scm b/gnu/packages/aidc.scm index bc9c47a480..0c1f26495b 100644 --- a/gnu/packages/aidc.scm +++ b/gnu/packages/aidc.scm @@ -194,22 +194,22 @@ C/C++ programs to use its capabilities without restrictions or overhead.") (assoc-ref %outputs "out") "/etc")))) (native-inputs - `(("autoconf" ,autoconf) - ("automake" ,automake) - ("gettext" ,gettext-minimal) - ("glib" ,glib "bin") - ("gobject-introspection" ,gobject-introspection) - ("libtool" ,libtool) - ("pkg-config" ,pkg-config) - ("python-wrapper" ,python-wrapper))) + (list autoconf + automake + gettext-minimal + `(,glib "bin") + gobject-introspection + libtool + patchelf + pkg-config + python-wrapper)) (inputs - `(("dbus" ,dbus) - ("imagemagick" ,imagemagick) - ("libjpeg" ,libjpeg-turbo) - ("perl" ,perl) - ("python" ,python) - ("qtx11extras" ,qtx11extras) - ("v4l-utils" ,v4l-utils))) + (list dbus + imagemagick + libjpeg-turbo + perl + python + v4l-utils)) (propagated-inputs ;; These are in 'requires' field of .pc files. (list glib gtk+ qtbase-5)) |