aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/neatvnc/default.nix
blob: 127f25a50beaddb4bfa7306a55c461e4d7ccf230 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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)
}:

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 ];

  patches = stdenv.lib.optional (!enableCpuAcceleration) ./disable-cpu-acceleration.patch;

  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 ];
  };
}