mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: gtk-vnc: Update package definition.
* gnu/packages/gnome.scm (gtk-vnc) [version]: Update to 1.0.0. [source]<origin>[sha256]: Modify base32. [build-system]: Change from gnu to meson. [arguments]<#:glib-or-gtk?>: New argument. [native-inputs]: Add gjs, node and perl. [inputs]: Add cairo, gdk-pixbuf+svg, libx11 and zlib. [synopsis]: Modify. [description]: Modify. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
d1a769d68f
commit
97787a24df
1 changed files with 31 additions and 23 deletions
|
@ -141,6 +141,7 @@ (define-module (gnu packages gnome)
|
||||||
#:use-module (gnu packages nettle)
|
#:use-module (gnu packages nettle)
|
||||||
#:use-module (gnu packages networking)
|
#:use-module (gnu packages networking)
|
||||||
#:use-module (gnu packages ninja)
|
#:use-module (gnu packages ninja)
|
||||||
|
#:use-module (gnu packages node)
|
||||||
#:use-module (gnu packages nss)
|
#:use-module (gnu packages nss)
|
||||||
#:use-module (gnu packages openldap)
|
#:use-module (gnu packages openldap)
|
||||||
#:use-module (gnu packages package-management)
|
#:use-module (gnu packages package-management)
|
||||||
|
@ -8154,40 +8155,47 @@ (define-public gnome-shell
|
||||||
(define-public gtk-vnc
|
(define-public gtk-vnc
|
||||||
(package
|
(package
|
||||||
(name "gtk-vnc")
|
(name "gtk-vnc")
|
||||||
(version "0.9.0")
|
(version "1.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnome/sources/" name "/"
|
(uri
|
||||||
(version-major+minor version) "/"
|
(string-append "mirror://gnome/sources/" name "/"
|
||||||
name "-" version ".tar.xz"))
|
(version-major+minor version) "/"
|
||||||
|
name "-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "1060ws037v556rx1qhfrcg02859rscksrzr8fq11himdg4d1y6m8"))))
|
||||||
"1dya1wc9vis8h0fv625pii1n70cckf1xjg1m2hndz989d118i6is"))))
|
(build-system meson-build-system)
|
||||||
(build-system gnu-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("--with-gtk=3.0")))
|
`(#:glib-or-gtk? #t)) ; To wrap binaries and/or compile schemas
|
||||||
(propagated-inputs
|
|
||||||
`(("gtk+" ,gtk+))) ; required by gtk-vnc-2.0.pc.
|
|
||||||
(inputs
|
|
||||||
`(("cyrus-sasl" ,cyrus-sasl)
|
|
||||||
("gnutls" ,gnutls)
|
|
||||||
("libgcrypt" ,libgcrypt)
|
|
||||||
("pulseaudio" ,pulseaudio)))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("glib:bin" ,glib "bin")
|
`(("gjs" ,gjs)
|
||||||
|
("glib:bin" ,glib "bin")
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("intltool" ,intltool)
|
("intltool" ,intltool)
|
||||||
|
("node" ,node)
|
||||||
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("python-wrapper" ,python-wrapper)
|
("python" ,python-wrapper)
|
||||||
("vala" ,vala)))
|
("vala" ,vala)))
|
||||||
|
(inputs
|
||||||
|
`(("cairo" ,cairo)
|
||||||
|
("gdk-pixbuf" ,gdk-pixbuf+svg)
|
||||||
|
("glib" ,glib)
|
||||||
|
("gnutls" ,gnutls)
|
||||||
|
("libgcrypt" ,libgcrypt)
|
||||||
|
("libsasl" ,cyrus-sasl)
|
||||||
|
("pulseaudio" ,pulseaudio)
|
||||||
|
("x11" ,libx11)
|
||||||
|
("zlib" ,zlib)))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("gtk+" ,gtk+)))
|
||||||
|
(synopsis "VNC client viewer widget for GTK+")
|
||||||
|
(description "GTK-VNC is a project providing client side APIs for the RFB
|
||||||
|
protocol / VNC remote desktop technology. It is built using coroutines allowing
|
||||||
|
it to be completely asynchronous while remaining single threaded. It provides a
|
||||||
|
core C library, and bindings for Python (PyGTK).")
|
||||||
(home-page "https://wiki.gnome.org/Projects/gtk-vnc")
|
(home-page "https://wiki.gnome.org/Projects/gtk-vnc")
|
||||||
(synopsis "VNC viewer widget for GTK+")
|
|
||||||
(description
|
|
||||||
"GTK-VNC is a VNC viewer widget for GTK+, used by remote desktop viewing
|
|
||||||
applications, for instance the Vinagre client, GNOME Boxes and virt-viewer.
|
|
||||||
GTK-VNC implements client side RFB protocol and authentication extensions such
|
|
||||||
as SASL, TLS and VeNCrypt. Additionally it supports encoding extensions.")
|
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public gnome-autoar
|
(define-public gnome-autoar
|
||||||
|
|
Loading…
Reference in a new issue