neatvnc: 0.1.0 -> 0.2.0

This commit is contained in:
Michael Weiss 2020-07-28 14:31:27 +02:00
parent 2f56b88d5f
commit 715cd6cc1d
No known key found for this signature in database
GPG key ID: 5BE487C4D4771D83
2 changed files with 5 additions and 25 deletions

View file

@ -1,24 +1,20 @@
{ stdenv, fetchFromGitHub, meson, pkg-config, ninja
, pixman, libuv, gnutls, libdrm
# libjpeg_turbo: Optional, for tight encoding (disabled because experimental)
, enableCpuAcceleration ? false # Whether to use CPU extensions (e.g. AVX)
, pixman, gnutls, libdrm, libjpeg_turbo, zlib, aml
}:
stdenv.mkDerivation rec {
pname = "neatvnc";
version = "0.1.0";
version = "0.2.0";
src = fetchFromGitHub {
owner = "any1";
repo = pname;
rev = "v${version}";
sha256 = "04wcpwxlcf0bczcs97j21346mn6finfj7xgc2dsrwrw9xq8qa7wc";
sha256 = "036kzhbabbwc3gvsw8kqf6rs0gh8kgn6i0by9pxski38mi0qs1qs";
};
nativeBuildInputs = [ meson pkg-config ninja ];
buildInputs = [ pixman libuv gnutls libdrm ];
patches = stdenv.lib.optional (!enableCpuAcceleration) ./disable-cpu-acceleration.patch;
buildInputs = [ pixman gnutls libdrm libjpeg_turbo zlib aml ];
meta = with stdenv.lib; {
description = "A VNC server library";
@ -30,6 +26,7 @@ stdenv.mkDerivation rec {
- Interoperability with the Freedesktop.org ecosystem
'';
inherit (src.meta) homepage;
changelog = "https://github.com/any1/neatvnc/releases/tag/v${version}";
license = licenses.isc;
platforms = platforms.linux;
maintainers = with maintainers; [ primeos ];

View file

@ -1,17 +0,0 @@
diff --git a/meson.build b/meson.build
index 31dd8b8..8761087 100644
--- a/meson.build
+++ b/meson.build
@@ -21,12 +21,6 @@ endif
cpu = host_machine.cpu_family()
-if cpu == 'x86_64'
- c_args += '-mavx'
-elif cpu == 'arm'
- c_args += '-mfpu=neon'
-endif
-
add_project_arguments(c_args, language: 'c')
cc = meson.get_compiler('c')