diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-20 22:17:47 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-21 00:44:06 -0400 |
commit | 0291b8d87a6422e246dda75318bda6bc49ed5a37 (patch) | |
tree | adb774320ecf2ac303d09520589807f4db3a7f44 /gnu/packages | |
parent | b84d0b81b20a1e894d2a321c16d1bdb0979c80e3 (diff) | |
download | guix-0291b8d87a6422e246dda75318bda6bc49ed5a37.tar.gz |
gnu: freerdp: Remove input labels.
* gnu/packages/rdesktop.scm (freerdp) [inputs]: Remove labels.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/rdesktop.scm | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/gnu/packages/rdesktop.scm b/gnu/packages/rdesktop.scm index 84a07e6ba9..5c2ab338d6 100644 --- a/gnu/packages/rdesktop.scm +++ b/gnu/packages/rdesktop.scm @@ -99,25 +99,24 @@ to remotely control a user's Windows desktop.") pkg-config xmlto)) (inputs - `(("alsa-lib" ,alsa-lib) - ("cups" ,cups) - ("ffmpeg" ,ffmpeg-4) - ("libjpeg" ,libjpeg-turbo) - ("libusb" ,libusb) - ("libx11" ,libx11) - ("libxkbfile" ,libxkbfile) - ("libxcursor" ,libxcursor) - ("libxext" ,libxext) - ("libxi" ,libxi) - ("libxv" ,libxv) - ("libxrandr" ,libxrandr) - ("libxrender" ,libxrender) - ("libxinerama" ,libxinerama) - ("libxshmfence" ,libxshmfence) - ("pulseaudio" ,pulseaudio) - ("zlib" ,zlib))) - (propagated-inputs - (list libxkbcommon openssl wayland)) + (list alsa-lib + cups + ffmpeg-4 + libjpeg-turbo + libusb + libx11 + libxkbfile + libxcursor + libxext + libxi + libxv + libxrandr + libxrender + libxinerama + libxshmfence + pulseaudio + zlib)) + (propagated-inputs (list libxkbcommon openssl wayland)) (arguments `(#:build-type "RELEASE" #:configure-flags |