tigerVNC: fix by updating (close #6852)
The default xorgserver is now on 1.16 and so the patch needs to change. The 116 patch is not in 1.3.1 so we also need to upgrade. I don't know how to compute this filename since the xorgserver derivation doesn't have a version attribute.
This commit is contained in:
parent
786f3216bc
commit
dc1ea2e968
@ -10,12 +10,12 @@
|
|||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.3.1";
|
version = "1.4.3";
|
||||||
name = "tigervnc-${version}";
|
name = "tigervnc-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/TigerVNC/tigervnc/archive/v${version}.tar.gz";
|
url = "https://github.com/TigerVNC/tigervnc/archive/v${version}.tar.gz";
|
||||||
sha256 = "161bhibic777g47lbjgdnvjhkkdzxrzmxz9rw9sim3q0gcbp0vz3";
|
sha256 = "0938fmlll1vxccc65hdhzdxii7c1v65n2nbgizjddprj5gdh69hb";
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit fontDirectories;
|
inherit fontDirectories;
|
||||||
@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
|
|||||||
tar xf ${xorgserver.src}
|
tar xf ${xorgserver.src}
|
||||||
cp -R xorg*/* unix/xserver
|
cp -R xorg*/* unix/xserver
|
||||||
pushd unix/xserver
|
pushd unix/xserver
|
||||||
for a in $xorgPatches ../xserver114.patch
|
for a in $xorgPatches ../xserver116.patch
|
||||||
do
|
do
|
||||||
patch -p1 < $a
|
patch -p1 < $a
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user