;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Ludovic Courtès ;;; Copyright © 2017 Thomas Danckaert ;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice ;;; Copyright © 2018 Efraim Flashner ;;; Copyright © 2019 Leo Famulari ;;; Copyright © 2019 Eric Bavier ;;; Copyright © 2023 Maxim Cournoyer ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/htmlxref.cnf')
0 files changed, 0 insertions, 0 deletions
docbook-xsl glib libxml2 libxslt pkg-config xmlto)) (inputs (list alsa-lib cairo cups dbus ffmpeg-4 gsm lame libjpeg-turbo libusb libx11 libxkbfile libxcursor libxdamage libxext libxi libxv libxrandr libxrender libxinerama libxshmfence opencl-headers openh264 opensles openssl pcsc-lite ; for smartcard support pulseaudio zlib)) (propagated-inputs (list libxkbcommon openssl wayland)) (arguments (list #:build-type "RELEASE" #:configure-flags #~(list "-DWITH_JPEG=ON" #$@(if (target-x86-64?) #~("-DWITH_SSE2=ON") #~()) "-DWITH_PULSE=ON" "-DWITH_CUPS=ON" "-DBUILD_TESTING=ON" "-DWITH_SERVER=ON" ;build servers "-DWITH_SHADOW=ON" ;build shadow server "-DWITH_PROXY=ON"))) (home-page "https://www.freerdp.com") (synopsis "Remote Desktop Protocol implementation") (description "FreeRDP implements Microsoft's Remote Desktop Protocol. It consists of the @code{xfreerdp} client, libraries for client and server functionality, and Windows Portable Runtime (WinPR), a portable implementation of parts of the Windows API.") (license license:asl2.0))) (define-public xrdp (package (name "xrdp") (version "0.10.0") (source (origin (method url-fetch) (uri (string-append "https://github.com/neutrinolabs/xrdp/releases/download/v" version "/xrdp-" version ".tar.gz")) (sha256 (base32 "1nakn842p759xxd9713335ms3h8dmr33xbmylnbk2j03m4dhvlnx")))) (build-system gnu-build-system) (inputs (list check fuse-2 imlib2 lame libjpeg-turbo libx11 libxfixes libxml2 libxpm libxrandr libxslt libxt linux-pam openssl pixman python python-libxml2)) (native-inputs (list bison cmocka flex gettext-minimal intltool nasm pkg-config pixman)) (arguments (list #:configure-flags #~(list "--enable-strict-locations=yes" "--enable-fuse=yes" "--enable-mp3lame=yes" "--enable-pixman=yes" "--enable-imlib2=yes" "--enable-pam-config=unix" "--enable-ipv6=yes"))) (home-page "https://www.xrdp.org") (synopsis "Remote Desktop Protocol (RDP) server") (description "Xrdp provides a graphical login to remote machines using Microsoft Remote Desktop Protocol (RDP). Xrdp accepts connections from a variety of RDP clients: @itemize @item FreeRDP @item rdesktop @item KRDC @item NeutrinoRDP @item Windows MSTSC (Microsoft Terminal Services Client, aka mstsc.exe) @item Microsoft Remote Desktop (found on Microsoft Store, which is distinct from MSTSC). @end itemize") (license license:asl2.0))) (define-public xorgxrdp (package (name "xorgxrdp") (version "0.9.19") (source (origin (method url-fetch) (uri (string-append "https://github.com/neutrinolabs/xorgxrdp/releases/download/v" version "/xorgxrdp-" version ".tar.gz")) (sha256 (base32 "0m8lvdnhfvwwqrr56difgy3mblplp23x6iy12kl4r8i87ic4rky1")))) (build-system gnu-build-system) (inputs (list check imlib2 libx11 libxfixes libxfont2 libxml2 libxpm libxrandr libxslt libxt pixman xdpyinfo xorg-server xrdp)) (native-inputs (list nasm intltool pkg-config pixman)) (arguments (list #:configure-flags #~(list "--enable-strict-locations=yes" (string-append "XRDP_CFLAGS=-I" #$(this-package-input "xrdp") "/common")))) (home-page "https://github.com/neutrinolabs/xorgxrdp") (synopsis "Xorg drivers for xrdp") (description "xorgxrdp is a collection of modules to be used with a pre-existing X.Org install to make the X server act like X11rdp. Unlike X11rdp, you don't have to recompile the whole X Window System. Instead, additional modules are installed to a location where the existing Xorg installation would pick them.") (license license:x11)))