From 8394619baceb118df92e355377fd543bb1aa501a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 13 Dec 2021 17:18:24 +0100 Subject: gnu: Simplify package inputs. This commit was obtained by running: ./pre-inst-env guix style without any additional argument. --- gnu/packages/vnc.scm | 40 ++++++++++++++++++---------------------- 1 file changed, 18 insertions(+), 22 deletions(-) (limited to 'gnu/packages/vnc.scm') diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm index c6b9d0059b..924e219f10 100644 --- a/gnu/packages/vnc.scm +++ b/gnu/packages/vnc.scm @@ -145,7 +145,7 @@ ("xdg-utils" ,xdg-utils) ("xkbfile" ,libxkbfile))) ; for nx plugin (propagated-inputs - `(("dconf" ,dconf))) + (list dconf)) (home-page "https://remmina.org/") (synopsis "Remote Desktop Client") (description "Remmina is a client to use other desktops remotely. @@ -175,21 +175,19 @@ RDP, VNC, SPICE, NX, XDMCP, SSH and EXEC network protocols are supported.") (with-directory-excursion "vncviewer" (invoke "make" "install"))))))) (native-inputs - `(("autoconf" ,autoconf) - ("gettext-minimal" ,gettext-minimal) - ("automake" ,automake))) + (list autoconf gettext-minimal automake)) (inputs - `(("zlib" ,zlib) - ("gnutls" ,gnutls) - ("libjpeg-turbo" ,libjpeg-turbo) - ("fltk" ,fltk) - ("linux-pam" ,linux-pam) - ("libx11" ,libx11) - ("libxext" ,libxext) - ("libxtst" ,libxtst) - ("libxrandr" ,libxrandr) - ("libxdamage" ,libxdamage) - ("pixman" ,pixman))) + (list zlib + gnutls + libjpeg-turbo + fltk + linux-pam + libx11 + libxext + libxtst + libxrandr + libxdamage + pixman)) (home-page "https://tigervnc.org/") (synopsis "High-performance, platform-neutral implementation of VNC (client)") @@ -227,13 +225,11 @@ application which is needed to connect to VNC servers.") ,@(package-inputs tigervnc-client) ,@(package-native-inputs xorg-server))) (inputs - `(("perl" ,perl) - ("coreutils" ,coreutils) - ("xauth" ,xauth) - ,@(package-inputs xorg-server))) + (modify-inputs (package-inputs xorg-server) + (prepend perl coreutils xauth))) (propagated-inputs - `(("xauth" ,xauth) - ,@(package-propagated-inputs xorg-server))) + (modify-inputs (package-propagated-inputs xorg-server) + (prepend xauth))) (arguments (substitute-keyword-arguments (package-arguments xorg-server) @@ -362,7 +358,7 @@ where the server is installed."))) "gcc -I")) #t))))) (native-inputs - `(("pkg-config" ,pkg-config))) + (list pkg-config)) (inputs `(("gnutls" ,gnutls) ("libgcrypt" ,libgcrypt) -- cgit v1.2.3