unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Andy Tai <atai@atai.org>
To: 64261@debbugs.gnu.org
Cc: Andy Tai <atai@atai.org>
Subject: [bug#64261] [PATCH v5 1/2] gnu: Add xrdp
Date: Fri, 28 Jul 2023 20:53:24 -0700	[thread overview]
Message-ID: <6b0922a66f55d5fe2f2d8fdaf5f48a57245d0aec.1690602767.git.atai@atai.org> (raw)
In-Reply-To: <6175dfd2c421fadf757a66ebd96ed1085c168c6b.1687592180.git.atai@atai.org>

* gnu/packages/rdesktop.scm (xrdp): New variable
---
 gnu/packages/rdesktop.scm | 76 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 76 insertions(+)

diff --git a/gnu/packages/rdesktop.scm b/gnu/packages/rdesktop.scm
index be4fe83cdc..04d3db610d 100644
--- a/gnu/packages/rdesktop.scm
+++ b/gnu/packages/rdesktop.scm
@@ -31,19 +31,29 @@ (define-module (gnu packages rdesktop)
   #: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,69 @@ (define-public freerdp
 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
+                  imlib2
+                  lame
+                  libjpeg-turbo
+                  libx11
+                  libxfixes
+                  libxml2
+                  libxpm
+                  libxrandr
+                  libxslt
+                  libxt
+                  linux-pam
+                  openssl
+                  pixman
+                  python
+                  python-libxml2))
+    (native-inputs (list autoconf
+                         automake
+                         libtool
+                         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)))
+

base-commit: e43cbeafd1b632f39b08b3644af5230d5350a656
-- 
2.41.0





  parent reply	other threads:[~2023-07-29  4:15 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-24  7:37 [bug#64261] [PATCH] gnu: Add xrdp Andy Tai
2023-06-24  9:21 ` [bug#64261] [PATCH v2] " Andy Tai
2023-06-27  7:29 ` [bug#64261] [PATCH v3] gnu: Add xrdp and xorgxrdp Andy Tai
2023-07-11 14:12   ` [bug#64261] [PATCH] gnu: Add xrdp Ludovic Courtès
2023-07-11 14:13     ` Andy Tai
2023-07-22 23:28 ` [bug#64261] [PATCH v4 0/2] Add xrdp and xorgxrdp Andy Tai
2023-07-22 23:28   ` [bug#64261] [PATCH v4 1/2] gnu: Add xrdp Andy Tai
2023-07-22 23:28   ` [bug#64261] [PATCH v4 2/2] gnu: Add xorgxrdp Andy Tai
2023-07-26  5:56 ` [bug#64261] Guix QA showing failure on invalid derivation Andy Tai
2023-07-26  9:53   ` Christopher Baines
2023-07-29  3:53 ` Andy Tai [this message]
2023-07-29  3:53   ` [bug#64261] [PATCH v5 2/2] gnu: Add xorgxrdp Andy Tai
2023-08-07 13:27   ` [bug#64261] [PATCH] gnu: Add xrdp Ludovic Courtès
2023-08-07 13:29     ` Andy Tai
2023-08-10  5:31 ` [bug#64261] [PATCH v6 1/2] " Andy Tai
2023-08-10  5:31   ` [bug#64261] [PATCH v6 2/2] gnu: Add xorgxrdp Andy Tai
2023-08-12 20:42   ` bug#64261: [PATCH v6 1/2] gnu: Add xrdp Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6b0922a66f55d5fe2f2d8fdaf5f48a57245d0aec.1690602767.git.atai@atai.org \
    --to=atai@atai.org \
    --cc=64261@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).