about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libvncserver/default.nix
blob: b9890f6a806b8297f7c5629d29023a4f9fb19e52 (plain) (blame)
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
38
39
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, libjpeg
, openssl
, zlib
, libgcrypt
, libpng
, systemd
, Carbon
}:

stdenv.mkDerivation rec {
  pname = "libvncserver";
  version = "0.9.13";

  src = fetchFromGitHub {
    owner = "LibVNC";
    repo = "libvncserver";
    rev = "LibVNCServer-${version}";
    sha256 = "sha256-gQT/M2u4nWQ0MfO2gWAqY0ZJc7V9eGczGzcsxKmG4H8=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ libjpeg openssl libgcrypt libpng ]
    ++ lib.optional stdenv.isLinux systemd
    ++ lib.optional stdenv.isDarwin Carbon;
  propagatedBuildInputs = [ zlib ];

  meta = with lib; {
    description = "VNC server library";
    homepage = "https://libvnc.github.io/";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.unix;
  };
}