about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libvncserver/default.nix
blob: 0a7819743e0362d2a28be2c6089fc85775d0d3dd (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
40
41
42
43
{stdenv, fetchurl, fetchpatch,
 libtool, libjpeg, openssl, zlib, libgcrypt, autoreconfHook, pkgconfig, libpng,
 systemd
}:

let
  s = # Generated upstream information
  rec {
    baseName="libvncserver";
    version="0.9.11";
    name="${baseName}-${version}";
    url="https://github.com/LibVNC/libvncserver/archive/LibVNCServer-${version}.tar.gz";
    sha256="15189n09r1pg2nqrpgxqrcvad89cdcrca9gx6qhm6akjf81n6g8r";
  };
in
stdenv.mkDerivation {
  inherit (s) name version;
  src = fetchurl {
    inherit (s) url sha256;
  };
  patches = [
    # CVE-2018-7225. Remove with the next release
    (fetchpatch {
      url = https://salsa.debian.org/debian/libvncserver/raw/master/debian/patches/CVE-2018-7225.patch;
      sha256 = "1hj1lzxsrdmzzl061vg0ncdpvfmvvkrpk8q12mp70qvszcqa7ja3";
    })
  ];
  preConfigure = ''
    sed -e 's@/usr/include/linux@${stdenv.cc.libc}/include/linux@g' -i configure
  '';
  nativeBuildInputs = [ pkgconfig autoreconfHook ];
  buildInputs = [
    libtool libjpeg openssl libgcrypt libpng
  ] ++ stdenv.lib.optional stdenv.isLinux systemd;
  propagatedBuildInputs = [ zlib ];
  meta = {
    inherit (s) version;
    description =  "VNC server library";
    license = stdenv.lib.licenses.gpl2Plus ;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.unix;
  };
}