Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.2 KiB
Nix
68 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
aml,
|
|
ffmpeg,
|
|
gnutls,
|
|
libjpeg_turbo,
|
|
libgbm,
|
|
pixman,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "neatvnc";
|
|
version = "0.9.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "any1";
|
|
repo = "neatvnc";
|
|
rev = "v${version}";
|
|
hash = "sha256-wAIifLw2rlu44jXMu/k31B7qePdJt6pT6TOhNxcyfLw=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
aml
|
|
ffmpeg
|
|
gnutls
|
|
libjpeg_turbo
|
|
libgbm
|
|
pixman
|
|
zlib
|
|
];
|
|
|
|
mesonFlags = [
|
|
(lib.mesonBool "tests" true)
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "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
|
|
'';
|
|
homepage = "https://github.com/any1/neatvnc";
|
|
changelog = "https://github.com/any1/neatvnc/releases/tag/v${version}";
|
|
license = lib.licenses.isc;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ nickcao ];
|
|
};
|
|
}
|