mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-02 09:28:57 -05:00
gnu: tigervnc-client: Update to 1.11.0.
* gnu/packages/vnc.scm (tigervnc-client): Update to 1.11.0. [inputs]: Add pixman. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
2dc0555480
commit
776c700aaf
1 changed files with 44 additions and 42 deletions
|
@ -1,8 +1,9 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2019 Todor Kondić <tk.code@protonmail.com>
|
;;; Copyright © 2019 Todor Kondić <tk.code@protonmail.com>
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||||
|
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -41,22 +42,22 @@ (define-module (gnu packages vnc)
|
||||||
#:use-module (gnu packages pkg-config)
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages sdl)
|
#:use-module (gnu packages sdl)
|
||||||
#:use-module (gnu packages tls)
|
#:use-module (gnu packages tls)
|
||||||
|
#:use-module (gnu packages xdisorg)
|
||||||
#:use-module (gnu packages xorg))
|
#:use-module (gnu packages xorg))
|
||||||
|
|
||||||
(define-public tigervnc-client
|
(define-public tigervnc-client
|
||||||
(let ((commit "920d9c4d6562ecabf79497bc901d50522d4bc661"))
|
|
||||||
(package
|
(package
|
||||||
(name "tigervnc-client")
|
(name "tigervnc-client")
|
||||||
(version (git-version "1.10.1" "1" commit))
|
(version "1.11.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri
|
||||||
(git-reference
|
(git-reference
|
||||||
(url "https://github.com/TigerVNC/tigervnc")
|
(url "https://github.com/TigerVNC/tigervnc")
|
||||||
(commit commit)))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1lp6mxl5dqlkrzx0q145jzgpbwvhsni3fj6x9ngf8v5s63x82q1p"))
|
"1bg79ahr4mzy48ak0caxy3ckdsxmhpchypggaz6lxjjk92hgsz91"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
|
@ -80,7 +81,8 @@ (define-public tigervnc-client
|
||||||
("libxext" ,libxext)
|
("libxext" ,libxext)
|
||||||
("libxtst" ,libxtst)
|
("libxtst" ,libxtst)
|
||||||
("libxrandr" ,libxrandr)
|
("libxrandr" ,libxrandr)
|
||||||
("libxdamage" ,libxdamage)))
|
("libxdamage" ,libxdamage)
|
||||||
|
("pixman" ,pixman)))
|
||||||
(home-page "https://tigervnc.org/")
|
(home-page "https://tigervnc.org/")
|
||||||
(synopsis "High-performance, platform-neutral
|
(synopsis "High-performance, platform-neutral
|
||||||
implementation of VNC (client)")
|
implementation of VNC (client)")
|
||||||
|
@ -89,7 +91,7 @@ (define-public tigervnc-client
|
||||||
applications. It also provides extensions for advanced authentication methods
|
applications. It also provides extensions for advanced authentication methods
|
||||||
and TLS encryption. This package installs only the VNC client, the
|
and TLS encryption. This package installs only the VNC client, the
|
||||||
application which is needed to connect to VNC servers.")
|
application which is needed to connect to VNC servers.")
|
||||||
(license license:gpl2))))
|
(license license:gpl2)))
|
||||||
|
|
||||||
;; A VNC server is, in fact, an X server so it seems like a good idea
|
;; A VNC server is, in fact, an X server so it seems like a good idea
|
||||||
;; to build on the work already done for xorg-server package. This is
|
;; to build on the work already done for xorg-server package. This is
|
||||||
|
|
Loading…
Reference in a new issue