mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 12:09:15 -05:00
gnu: tigervnc-server: Update to 1.10.1-1.920d9c4.
* gnu/packages/vnc.scm (tigervnc-client): Update to 1.10.1-1.920d9c4. (tigervnc-server)[version]: Update to 1.10.1-1.920d9c4. [arguments]<#:phases>[patch-xserver]: Fix format procedure call. [native-inputs]: Use tigervnc-client package source.
This commit is contained in:
parent
705a5dcb87
commit
d58c9574b3
1 changed files with 45 additions and 53 deletions
|
@ -43,20 +43,20 @@ (define-module (gnu packages vnc)
|
|||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public tigervnc-client
|
||||
(let ((commit "920d9c4d6562ecabf79497bc901d50522d4bc661"))
|
||||
(package
|
||||
(name "tigervnc-client")
|
||||
(version "1.10.1")
|
||||
(source
|
||||
(origin
|
||||
(version (git-version "1.10.1" "1" commit))
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/TigerVNC/tigervnc.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(commit commit)))
|
||||
(sha256
|
||||
(base32
|
||||
"001n189d2f3psn7nxgl8188ml6f7jbk26cxn2835y3mnlk5lmhgr"))))
|
||||
"1lp6mxl5dqlkrzx0q145jzgpbwvhsni3fj6x9ngf8v5s63x82q1p"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f ; Tests that do exists are not automated.
|
||||
|
@ -88,7 +88,7 @@ (define-public tigervnc-client
|
|||
applications. It also provides extensions for advanced authentication methods
|
||||
and TLS encryption. This package installs only the VNC client, the
|
||||
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
|
||||
;; to build on the work already done for xorg-server package. This is
|
||||
|
@ -103,17 +103,9 @@ (define-public tigervnc-server
|
|||
(package
|
||||
(inherit xorg-server)
|
||||
(name "tigervnc-server")
|
||||
(version "1.10.1")
|
||||
(version (package-version tigervnc-client))
|
||||
(native-inputs
|
||||
`(("tigervnc-src" ,(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/TigerVNC/tigervnc.git")
|
||||
(commit "v1.9.0")))
|
||||
(sha256
|
||||
(base32
|
||||
"0b47fg3741qs3zdpl2zr0s6jz46dypp2j6gqrappbzm3ywnnmm1x"))))
|
||||
`(("tigervnc-src" ,(package-source tigervnc-client))
|
||||
("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)
|
||||
|
@ -183,9 +175,9 @@ (define-public tigervnc-server
|
|||
(list-head (string-split xorg-server-version
|
||||
#\.)
|
||||
2)))
|
||||
(fn (format "~a/unix/xserver~a.patch" tvnc-src patch-num)))
|
||||
(fn (format #f "~a/unix/xserver~a.patch" tvnc-src patch-num)))
|
||||
(when (not (file-exists? fn))
|
||||
(error (format "Patch file, ~a,
|
||||
(error (format #f "Patch file, ~a,
|
||||
corresponding to the input xorg-server version, does not exist. Installation
|
||||
will fail. " fn)))
|
||||
|
||||
|
|
Loading…
Reference in a new issue