diff options
author | kitzman <kitzman@disroot.org> | 2022-02-23 20:46:15 +0200 |
---|---|---|
committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2024-07-30 17:52:37 +0800 |
commit | 6a517e9417792852394e83caf29df136ec54ec5d (patch) | |
tree | fe84917a21523d777eec6c32cfe4a84e3f4a6085 /gnu | |
parent | 48a33bb067685064f481473e5e7542cea59760af (diff) | |
download | guix-6a517e9417792852394e83caf29df136ec54ec5d.tar.gz guix-6a517e9417792852394e83caf29df136ec54ec5d.zip |
gnu: Add neatvnc.
* gnu/packages/vnc.scm (neatvnc): New Variable.
Change-Id: I8cb0e59089b9f9812b27fdd58dceba747a896924
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/vnc.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/vnc.scm b/gnu/packages/vnc.scm index 7f39488b02..1a69217c97 100644 --- a/gnu/packages/vnc.scm +++ b/gnu/packages/vnc.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2022, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2022 Mehmet Tekman <mtekman89@gmail.com> +;;; Copyright @ 2022, Kitzman <kitzman@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +27,7 @@ (define-module (gnu packages vnc) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) + #:use-module (guix build-system meson) #:use-module (guix download) #:use-module (guix gexp) #:use-module (guix git-download) @@ -38,6 +40,7 @@ #:use-module (gnu packages autotools) #:use-module (gnu packages avahi) #:use-module (gnu packages base) + #:use-module (gnu packages c) #:use-module (gnu packages cmake) #:use-module (gnu packages compression) #:use-module (gnu packages crypto) @@ -54,7 +57,9 @@ #:use-module (gnu packages guile) #:use-module (gnu packages image) #:use-module (gnu packages java) + #:use-module (gnu packages libevent) #:use-module (gnu packages linux) + #:use-module (gnu packages man) #:use-module (gnu packages pcre) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) @@ -651,3 +656,27 @@ client") easily implement VNC server or client functionality in your program.") (license ;; GPL for programs, FDL for documentation (list license:gpl2+ license:fdl1.2+)))) + +(define-public neatvnc + (package + (name "neatvnc") + (version "0.4.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/any1/neatvnc") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1wpq1vyjqra877vwc3n4i0c1dyhmabyn993cslf1k142ikyc0a8w")))) + (build-system meson-build-system) + (native-inputs (list pkg-config)) + (inputs + (list libdrm libglvnd libxkbcommon pixman aml gnutls libjpeg-turbo zlib)) + (home-page "https://github.com/any1/neatvnc") + (synopsis "Lightweight VNC server library") + (description "NeatVNC is a lightweight VNC server library, supporting +authentication, SSH tunneling, and ZRLE or Tight encoding.") + (license license:isc))) + |