diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-09 02:07:46 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-10 00:32:35 +0100 |
commit | 2717f180c4cba1da713c8fb54c0111bf64327e6d (patch) | |
tree | df156a169e2178dc6b50c23c858a495bfda75c98 /gnu | |
parent | 294476022f19139e290acb448d4575de0f851673 (diff) | |
download | guix-2717f180c4cba1da713c8fb54c0111bf64327e6d.tar guix-2717f180c4cba1da713c8fb54c0111bf64327e6d.tar.gz |
gnu: libportal: Remove input labels.
* gnu/packages/freedesktop.scm (libportal)[native-inputs]:
Remove input labels.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/freedesktop.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index c927d8e4dc..a7d400d3bf 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -2236,13 +2236,13 @@ fallback to generic Systray support if none of those are available.") (list "-Dbackends=gtk4,qt5" "-Ddocs=false"))) ; requires unpackaged gi-docgen (native-inputs - `(("pkg-config" ,pkg-config) - ("docbook-xsl" ,docbook-xsl) - ("docbook-xml" ,docbook-xml) - ("glib:bin" ,glib "bin") - ("gobject-introspection" ,gobject-introspection) - ("libxml2" ,libxml2) - ("vala" ,vala))) + (list pkg-config + docbook-xsl + docbook-xml + `(,glib "bin") + gobject-introspection + libxml2 + vala)) (inputs (list gtk gtk+ |