diff options
author | Andy Tai <atai@atai.org> | 2023-08-09 22:31:01 -0700 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-08-12 22:40:24 +0200 |
commit | 97377e389da711dfd0739a8cb41ba19aad90fa96 (patch) | |
tree | 0a5dc42a914b8327caaa0b37c9d42c64b4c7fe51 | |
parent | 7b11cfd19e9cae1b8308fae974307168c1766723 (diff) | |
download | guix-97377e389da711dfd0739a8cb41ba19aad90fa96.tar guix-97377e389da711dfd0739a8cb41ba19aad90fa96.tar.gz |
gnu: Add xrdp.
* gnu/packages/rdesktop.scm (xrdp): New variable
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/rdesktop.scm | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/gnu/packages/rdesktop.scm b/gnu/packages/rdesktop.scm index be4fe83cdc..505c051433 100644 --- a/gnu/packages/rdesktop.scm +++ b/gnu/packages/rdesktop.scm @@ -31,19 +31,29 @@ #:use-module (guix utils) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (gnu packages assembly) + #:use-module (gnu packages autotools) + #:use-module (gnu packages bison) + #:use-module (gnu packages check) #:use-module (gnu packages compression) #:use-module (gnu packages cups) #:use-module (gnu packages docbook) + #:use-module (gnu packages flex) #:use-module (gnu packages freedesktop) + #:use-module (gnu packages gettext) #:use-module (gnu packages glib) #:use-module (gnu packages gstreamer) #:use-module (gnu packages image) #:use-module (gnu packages libusb) #:use-module (gnu packages linux) + #:use-module (gnu packages mp3) #:use-module (gnu packages nettle) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages python) + #:use-module (gnu packages python-xyz) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages tls) + #:use-module (gnu packages version-control) #:use-module (gnu packages video) #:use-module (gnu packages xdisorg) #:use-module (gnu packages xorg) @@ -137,3 +147,65 @@ 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.9.22.1") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/neutrinolabs/xrdp/releases/download/v" + version "/xrdp-" version ".tar.gz")) + (sha256 + (base32 + "1jzknwy003fk5lqzrncbypirq3smpghxy2prg2m2ljjrx77j1lvd")))) + (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 + 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))) + |