diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-10-09 00:44:08 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-11 10:31:28 -0500 |
commit | 81bda13ad2f61abb22267b5f771b8430599924b0 (patch) | |
tree | d669b71a2eb6c3763429fdc84df63bab5ee92b17 /gnu | |
parent | 11e7a534f74314324f8bafd73d234b7060acb31a (diff) |
gnu: dbus-c++: Fix build.
* gnu/packages/glib.scm (dbus-c++)[inputs]: Add libunwind.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/glib.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 3065ae8709..2083a17ff3 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -54,6 +54,7 @@ #:use-module (gnu packages gperf) #:use-module (gnu packages gtk) #:use-module (gnu packages libffi) + #:use-module (gnu packages libunwind) #:use-module (gnu packages linux) #:use-module (gnu packages m4) #:use-module (gnu packages nettle) @@ -1099,7 +1100,8 @@ This package provides the library for GLib applications.") (inputs `(("efl" ,efl) ("expat" ,expat) - ("glib" ,glib))) + ("glib" ,glib) + ("libunwind" ,libunwind))) (native-inputs `(("pkg-config" ,pkg-config))) (arguments |