tigervnc: 1.7.0 -> 1.7.1 for CVE-2017-5581

This commit is contained in:
Graham Christensen 2017-02-03 07:34:25 -05:00
parent 47127e6951
commit d66fa9acfd
No known key found for this signature in database
GPG Key ID: 06121D366FE9435C

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, xorg { stdenv, fetchFromGitHub, xorg
, autoconf, automake, cvs, libtool, nasm, pixman, xkeyboard_config , autoconf, automake, cvs, libtool, nasm, pixman, xkeyboard_config
, fontDirectories, libgcrypt, gnutls, pam, flex, bison, gettext , fontDirectories, libgcrypt, gnutls, pam, flex, bison, gettext
, cmake, libjpeg_turbo, fltk, nettle, libiconv, libtasn1 , cmake, libjpeg_turbo, fltk, nettle, libiconv, libtasn1
@ -7,13 +7,14 @@
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.7.0"; version = "1.7.1";
name = "tigervnc-${version}"; name = "tigervnc-${version}";
src = fetchgit { src = fetchFromGitHub {
url = "https://github.com/TigerVNC/tigervnc/"; owner = "TigerVNC";
sha256 = "1b6n2gq6078x8dwz471a68jrkgpcxmbiivmlsakr42vrndm7niz3"; repo = "tigervnc";
rev = "e25272fc74ef09987ccaa33b9bf1736397c76fdf"; sha256 = "0s2v1h24cl5ypnr35hima580xvvsh0cdqi501mvyvi7wz9cp33rj";
rev = "v1.7.1";
}; };
inherit fontDirectories; inherit fontDirectories;