mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
neatvnc: 0.9.6 -> 1.0.0
Diff: https://github.com/any1/neatvnc/compare/v0.9.6...v1.0.0 Changelog: https://github.com/any1/neatvnc/releases/tag/v1.0.0
This commit is contained in:
parent
668c37f709
commit
5b9438fa89
1 changed files with 17 additions and 4 deletions
|
|
@ -8,21 +8,25 @@
|
|||
aml,
|
||||
ffmpeg,
|
||||
gnutls,
|
||||
libdrm,
|
||||
libjpeg_turbo,
|
||||
libgbm,
|
||||
nettle,
|
||||
pixman,
|
||||
zlib,
|
||||
python3,
|
||||
openssl,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "neatvnc";
|
||||
version = "0.9.6";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "any1";
|
||||
repo = "neatvnc";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-VStlTsfXbFxTnRGdK1y7MLtCzxbHzraw5GGph3sS/kI=";
|
||||
hash = "sha256-yEWNiazRxc8G7ToqOcTtCXEuBCgXO64v31Xx1YeOPCM=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
|
@ -37,17 +41,26 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
aml
|
||||
ffmpeg
|
||||
gnutls
|
||||
libdrm
|
||||
libjpeg_turbo
|
||||
libgbm
|
||||
nettle
|
||||
pixman
|
||||
zlib
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
(lib.mesonBool "tests" true)
|
||||
nativeCheckInputs = [
|
||||
python3
|
||||
openssl
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
mesonFlags = [
|
||||
(lib.mesonBool "tests" finalAttrs.finalPackage.doCheck)
|
||||
];
|
||||
|
||||
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
||||
|
||||
__structuredAttrs = true;
|
||||
|
||||
meta = {
|
||||
description = "VNC server library";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue