mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: freerdp: Update to 2.2.0 [security fixes].
This fixes CVE-2022-39316, CVE-2022-39317, CVE-2022-39318, CVE-2022-39319, CVE-2022-39320, CVE-2022-41877, CVE-2022-39347, CVE-2022-39282, CVE-2022-39283, CVE-2021-41159 and CVE-2021-41160. * gnu/packages/rdesktop.scm (freerdp): Update to 2.2.0. [arguments]: Use gexps. Do not set DOCBOOKXSL_DIR in #:configureflags.
This commit is contained in:
parent
e784cba423
commit
524b54ae58
1 changed files with 15 additions and 18 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org>
|
;;; Copyright © 2019 Eric Bavier <bavier@member.fsf.org>
|
||||||
|
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -25,7 +26,9 @@
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix utils)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
|
@ -79,16 +82,16 @@ to remotely control a user's Windows desktop.")
|
||||||
(define-public freerdp
|
(define-public freerdp
|
||||||
(package
|
(package
|
||||||
(name "freerdp")
|
(name "freerdp")
|
||||||
(version "2.2.0")
|
(version "2.10.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "git://github.com/FreeRDP/FreeRDP")
|
(url "https://github.com/FreeRDP/FreeRDP")
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "02zlg5r704zbryx09a5rjjf7q137kj16i9qh25dw9q1y69ri619n"))))
|
(base32 "0j5waq4h7l5f0vrh7wmrv6r27p537qwbg7ab8j0n0ia5p4nvgjp2"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list docbook-xml
|
(list docbook-xml
|
||||||
|
@ -118,21 +121,15 @@ to remotely control a user's Windows desktop.")
|
||||||
zlib))
|
zlib))
|
||||||
(propagated-inputs (list libxkbcommon openssl wayland))
|
(propagated-inputs (list libxkbcommon openssl wayland))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:build-type "RELEASE"
|
(list #:build-type "RELEASE"
|
||||||
#:configure-flags
|
#:configure-flags
|
||||||
(list "-DWITH_JPEG=ON"
|
#~(list "-DWITH_JPEG=ON"
|
||||||
,@(if (string-prefix? "x86_64"
|
#$@(if (target-x86-64?)
|
||||||
(or (%current-target-system)
|
#~("-DWITH_SSE2=ON")
|
||||||
(%current-system)))
|
#~())
|
||||||
'("-DWITH_SSE2=ON")
|
"-DWITH_PULSE=ON"
|
||||||
'())
|
"-DWITH_CUPS=ON"
|
||||||
(string-append "-DDOCBOOKXSL_DIR="
|
"-DBUILD_TESTING=ON")))
|
||||||
(assoc-ref %build-inputs "docbook-xsl")
|
|
||||||
"/xml/xsl/docbook-xsl-"
|
|
||||||
,(package-version docbook-xsl))
|
|
||||||
"-DWITH_PULSE=ON"
|
|
||||||
"-DWITH_CUPS=ON"
|
|
||||||
"-DBUILD_TESTING=ON")))
|
|
||||||
(home-page "https://www.freerdp.com")
|
(home-page "https://www.freerdp.com")
|
||||||
(synopsis "Remote Desktop Protocol implementation")
|
(synopsis "Remote Desktop Protocol implementation")
|
||||||
(description "FreeRDP implements Microsoft's Remote Desktop Protocol.
|
(description "FreeRDP implements Microsoft's Remote Desktop Protocol.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue