2019-11-29 18:14:40 +00:00
|
|
|
{ stdenv, fetchzip, fetchpatch, cmake
|
|
|
|
, libjpeg, openssl, zlib, libgcrypt, libpng
|
|
|
|
, systemd
|
2013-10-20 14:34:42 +01:00
|
|
|
}:
|
2013-10-21 09:40:30 +01:00
|
|
|
|
2013-10-20 14:34:42 +01:00
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
2019-11-29 18:14:40 +00:00
|
|
|
pname = "libvncserver";
|
|
|
|
version = "0.9.12";
|
|
|
|
url = "https://github.com/LibVNC/libvncserver/archive/LibVNCServer-${version}.tar.gz";
|
|
|
|
sha256 = "1226hb179l914919f5nm2mlf8rhaarqbf48aa649p4rwmghyx9vm"; # unpacked archive checksum
|
2013-10-20 14:34:42 +01:00
|
|
|
};
|
2008-10-04 16:13:31 +01:00
|
|
|
in
|
2013-10-20 14:34:42 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-11-29 18:14:40 +00:00
|
|
|
inherit (s) pname version;
|
|
|
|
src = fetchzip {
|
2013-10-20 14:34:42 +01:00
|
|
|
inherit (s) url sha256;
|
2008-10-04 16:13:31 +01:00
|
|
|
};
|
2018-12-17 00:37:12 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2019-11-29 18:14:40 +00:00
|
|
|
name = "CVE-2018-20750.patch";
|
|
|
|
url = "https://github.com/LibVNC/libvncserver/commit/09e8fc02f59f16e2583b34fe1a270c238bd9ffec.patch";
|
|
|
|
sha256 = "004h50786nvjl3y3yazpsi2b767vc9gqrwm1ralj3zgy47kwfhqm";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2019-15681.patch";
|
|
|
|
url = "https://github.com/LibVNC/libvncserver/commit/d01e1bb4246323ba6fcee3b82ef1faa9b1dac82a.patch";
|
|
|
|
sha256 = "0hf0ss7all2m50z2kan4mck51ws44yim4ymn8p0d991y465y6l9s";
|
2018-12-17 00:37:12 +00:00
|
|
|
})
|
|
|
|
];
|
2019-11-29 18:14:40 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2018-01-09 15:43:51 +00:00
|
|
|
buildInputs = [
|
2019-11-29 18:14:40 +00:00
|
|
|
libjpeg openssl libgcrypt libpng
|
2018-01-09 15:43:51 +00:00
|
|
|
] ++ stdenv.lib.optional stdenv.isLinux systemd;
|
|
|
|
propagatedBuildInputs = [ zlib ];
|
2008-10-04 16:13:31 +01:00
|
|
|
meta = {
|
2013-10-20 14:34:42 +01:00
|
|
|
inherit (s) version;
|
2019-11-29 18:14:40 +00:00
|
|
|
description = "VNC server library";
|
|
|
|
homepage = "https://libvnc.github.io/";
|
2013-10-20 14:34:42 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus ;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
2018-01-09 15:43:51 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2008-10-04 16:13:31 +01:00
|
|
|
};
|
|
|
|
}
|