gnu: Add enet.
[jackhill/guix/guix.git] / gnu / packages / rdesktop.scm
CommitLineData
00e65098
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages rdesktop)
20 #:use-module ((guix licenses) #:prefix license:)
21 #:use-module (guix packages)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
cc2b77df
AE
24 #:use-module (gnu packages tls)
25 #:use-module (gnu packages xorg))
00e65098
LC
26
27(define-public rdesktop
28 (package
29 (name "rdesktop")
30 (version "1.8.3")
31 (source (origin
32 (method url-fetch)
33 (uri (string-append
de67e922
LF
34 "mirror://sourceforge/" name "/" name "/" version "/"
35 name "-" version ".tar.gz"))
00e65098
LC
36 (sha256
37 (base32
38 "1r7c1rjmw2xzq8fw0scyb453gy9z19774z1z8ldmzzsfndb03cl8"))))
39 (build-system gnu-build-system)
40 (arguments
41 '(#:configure-flags (list (string-append "--with-openssl="
42 (assoc-ref %build-inputs
43 "openssl"))
44
45 ;; XXX: optional dependencies missing
46 "--disable-credssp"
47 "--disable-smartcard")
48
49 #:tests? #f)) ;no 'check' target
50 (inputs
51 `(("libx11" ,libx11)
52 ("openssl" ,openssl)))
53 (home-page "http://www.rdesktop.org/")
54 (synopsis "Client for Windows Terminal Services")
55 (description
56 "rdesktop is a client for Microsoft's Windows Remote Desktop Services,
e881752c 57capable of natively speaking Remote Desktop Protocol (RDP). It allows users
00e65098
LC
58to remotely control a user's Windows desktop.")
59 (license license:gpl3+)))