diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-19 11:53:31 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-19 11:54:48 +0100 |
commit | 6ae7acb2d0a74118421e422bb99c4aeed3f35a2a (patch) | |
tree | 3713c4ebe23f21c7db137cd7bf4299f80e3d7986 | |
parent | c5091996c99274d68cb25f0a98a2c1f86ad8064b (diff) |
gnu: vinagre: Improve style.
* gnu/packages/gnome.scm (vinagre): Use G-expressions, remove traling #t
from lambdas, use list style.
[native-inputs]: Remove lables.
Change-Id: Ia9b33b605930fda497d2018acb862034d49ba2a6
-rw-r--r-- | gnu/packages/gnome.scm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 54555025aa..86ed1e5870 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -4817,28 +4817,28 @@ editors, IDEs, etc.") (arguments ;; Disable -Werror and such, to avoid build failures on compilation ;; warnings. - '(#:configure-flags `("--enable-compile-warnings=minimum" - ,(string-append "CFLAGS=-O2 -g -fcommon " - "-Wno-implicit-int " - "-Wno-incompatible-pointer-types")) - #:phases - (modify-phases %standard-phases - (add-before 'install 'skip-gtk-update-icon-cache - (lambda _ - ;; Don't create 'icon-theme.cache' - (substitute* (find-files "." "^Makefile$") - (("gtk-update-icon-cache") (which "true"))) - #t)) - (add-after 'unpack 'patch-configure - (lambda _ - (substitute* "configure" - (("freerdp") "freerdp2")) - #t))))) + (list + #:configure-flags + #~(list "--enable-compile-warnings=minimum" + (string-append "CFLAGS=-O2 -g -fcommon " + "-Wno-implicit-int " + "-Wno-incompatible-pointer-types")) + #:phases + #~(modify-phases %standard-phases + (add-before 'install 'skip-gtk-update-icon-cache + (lambda _ + ;; Don't create 'icon-theme.cache' + (substitute* (find-files "." "^Makefile$") + (("gtk-update-icon-cache") (which "true"))))) + (add-after 'unpack 'patch-configure + (lambda _ + (substitute* "configure" + (("freerdp") "freerdp2"))))))) (native-inputs - `(("pkg-config" ,pkg-config) - ("intltool" ,intltool) - ("itstool" ,itstool) - ("glib-bin" ,glib "bin"))) ;for glib-compile-schemas + (list pkg-config + intltool + itstool + (list glib "bin"))) ;for glib-compile-schemas (inputs (list libxml2 gtk-vnc |