diff options
author | Marius Bakke <marius@gnu.org> | 2022-08-29 15:57:36 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-08-30 20:11:18 +0200 |
commit | f3938c91556904c9462f242089fafe3a36e657fb (patch) | |
tree | 135353080745cd4601c5f8faae9f5f51c552864f /gnu | |
parent | 49cc920a261395f5585c6fd6cddec77547b42d43 (diff) | |
download | guix-f3938c91556904c9462f242089fafe3a36e657fb.tar.gz guix-f3938c91556904c9462f242089fafe3a36e657fb.zip |
gnu: polkit: Fix build.
This is a follow-up to commit e8f4e1808563eb3c1cd28d419a1f349412af4a0d.
* gnu/packages/polkit.scm (polkit)[native-inputs]: Add GETTEXT-MINIMAL.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/polkit.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/polkit.scm b/gnu/packages/polkit.scm index 5ef84ca730..abbe878b79 100644 --- a/gnu/packages/polkit.scm +++ b/gnu/packages/polkit.scm @@ -138,7 +138,8 @@ (propagated-inputs (list glib)) ;required by polkit-gobject-1.pc (native-inputs - (list `(,glib "bin") ;for glib-mkenums + (list gettext-minimal + `(,glib "bin") ;for glib-mkenums docbook-xsl ;for man page generation gobject-introspection libxml2 ;for XML_CATALOG_FILES |