neatvnc: init at 0.1.0
This commit is contained in:
parent
aeac26a3ec
commit
5111cf2da9
34
pkgs/development/libraries/neatvnc/default.nix
Normal file
34
pkgs/development/libraries/neatvnc/default.nix
Normal file
@ -0,0 +1,34 @@
|
||||
{ stdenv, fetchFromGitHub, meson, pkg-config, ninja
|
||||
, pixman, libuv, gnutls, libdrm
|
||||
# libjpeg_turbo: Optional, for tight encoding (disabled because experimental)
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "neatvnc";
|
||||
version = "0.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "any1";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "04wcpwxlcf0bczcs97j21346mn6finfj7xgc2dsrwrw9xq8qa7wc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson pkg-config ninja ];
|
||||
buildInputs = [ pixman libuv gnutls libdrm ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A VNC server library";
|
||||
longDescription = ''
|
||||
This is a liberally licensed VNC server library that's intended to be
|
||||
fast and neat. Goals:
|
||||
- Speed
|
||||
- Clean interface
|
||||
- Interoperability with the Freedesktop.org ecosystem
|
||||
'';
|
||||
inherit (src.meta) homepage;
|
||||
license = licenses.isc;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
@ -13465,6 +13465,8 @@ in
|
||||
|
||||
neardal = callPackage ../development/libraries/neardal { };
|
||||
|
||||
neatvnc = callPackage ../development/libraries/neatvnc { };
|
||||
|
||||
neon = callPackage ../development/libraries/neon { };
|
||||
|
||||
neon_0_29 = callPackage ../development/libraries/neon/0.29.nix {
|
||||
|
Loading…
Reference in New Issue
Block a user