diff options
author | Josselin Poiret via Guix-patches via <guix-patches@gnu.org> | 2023-02-01 17:56:51 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2023-02-09 15:19:50 +0100 |
commit | 6d505fffb43c712d15edd9a635e998dda9788cad (patch) | |
tree | 50130dde221c5971e07dee475f247bf53d2c25c1 | |
parent | d934f36096142257e192e3029895b3a054bf3537 (diff) | |
download | guix-6d505fffb43c712d15edd9a635e998dda9788cad.tar.gz guix-6d505fffb43c712d15edd9a635e998dda9788cad.zip |
gnu: basu: Propagate libcap.
* gnu/packages/freedesktop.scm (basu): Propagate libcap so that pkg-config can
find basu's dependency.
Signed-off-by: Jelle Licht <jlicht@fsfe.org>
-rw-r--r-- | gnu/packages/freedesktop.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 90398f0e70..8fc030a493 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -827,7 +827,8 @@ of a the system to know what users are logged in, and where.") (build-system meson-build-system) (native-inputs (list pkg-config python gperf)) - (inputs + (propagated-inputs + ;; Propagated because of pkg-config (list libcap)) (synopsis "The sd-bus library, extracted from systemd") (description "Some projects rely on the sd-bus library for DBus support. |