diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-25 23:49:21 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-25 23:49:30 -0500 |
commit | b1dd71c0b3db65409854506208efb4bdd72dd4d3 (patch) | |
tree | e35bb1faa576eb635fa4fd04ab3ed676ecb7921f | |
parent | 68d47844b1aea8bc14e2c419d539205aa0d36925 (diff) | |
download | guix-b1dd71c0b3db65409854506208efb4bdd72dd4d3.tar guix-b1dd71c0b3db65409854506208efb4bdd72dd4d3.tar.gz |
gnu: adwaita-icon-theme: Fix the conditional native input.
This is a follow up to commit 16afb35ac9.
* gnu/packages/gnome.scm (adwaita-icon-theme)[native-inputs]: Add an extra
layer of parenthesizes on the conditional input to be spliced.
-rw-r--r-- | gnu/packages/gnome.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 804e714434..4529928840 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -2959,7 +2959,7 @@ GNOME and KDE desktops to the icon names proposed in the specification.") ;; The following requires the SVG pixbuf loader, provided by librsvg, ;; available on x86_64 only. `(,@(if (target-64bit?) - (list "gtk-encode-symbolic-svg" gtk+ "bin") + `(("gtk-encode-symbolic-svg" ,gtk+ "bin")) '()))))) (define-public tango-icon-theme |