x2goclient: unstable-2019-07-24 -> 4.1.2.2, fix #78907

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

+8 -7
+8 -7
pkgs/applications/networking/remote/x2goclient/default.nix
··· 1 - { lib, fetchgit, cups, libssh, libXpm, nx-libs, openldap, openssh 2 , mkDerivation, qtbase, qtsvg, qtx11extras, qttools, phonon, pkg-config }: 3 4 - mkDerivation { 5 pname = "x2goclient"; 6 - version = "unstable-2019-07-24"; 7 8 - src = fetchgit { 9 - url = "git://code.x2go.org/x2goclient.git"; 10 - rev = "704c4ab92d20070dd160824c9b66a6d1c56dcc49"; 11 - sha256 = "1pndp3lfzwifyxqq0gps3p1bwakw06clbk6n8viv020l4bsfmq5f"; 12 }; 13 14 buildInputs = [ cups libssh libXpm nx-libs openldap openssh 15 qtbase qtsvg qtx11extras qttools phonon pkg-config ]; 16 17 postPatch = '' 18 substituteInPlace Makefile \ 19 --replace "SHELL=/bin/bash" "SHELL=$SHELL" \ 20 --replace "lrelease-qt4" "${qttools.dev}/bin/lrelease" \ ··· 33 meta = with lib; { 34 description = "Graphical NoMachine NX3 remote desktop client"; 35 homepage = "http://x2go.org/"; 36 license = licenses.gpl2; 37 platforms = platforms.linux; 38 };
··· 1 + { lib, fetchurl, cups, libssh, libXpm, nx-libs, openldap, openssh 2 , mkDerivation, qtbase, qtsvg, qtx11extras, qttools, phonon, pkg-config }: 3 4 + mkDerivation rec { 5 pname = "x2goclient"; 6 + version = "4.1.2.2"; 7 8 + src = fetchurl { 9 + url = "https://code.x2go.org/releases/source/${pname}/${pname}-${version}.tar.gz"; 10 + sha256 = "yZUyZ8QPpnEZrZanO6yx8mYZbaIFnwzc0bjVGZQh0So="; 11 }; 12 13 buildInputs = [ cups libssh libXpm nx-libs openldap openssh 14 qtbase qtsvg qtx11extras qttools phonon pkg-config ]; 15 16 postPatch = '' 17 + substituteInPlace src/onmainwindow.cpp --replace "/usr/sbin/sshd" "${openssh}/bin/sshd" 18 substituteInPlace Makefile \ 19 --replace "SHELL=/bin/bash" "SHELL=$SHELL" \ 20 --replace "lrelease-qt4" "${qttools.dev}/bin/lrelease" \ ··· 33 meta = with lib; { 34 description = "Graphical NoMachine NX3 remote desktop client"; 35 homepage = "http://x2go.org/"; 36 + maintainers = with maintainers; [ mkg20001 ]; 37 license = licenses.gpl2; 38 platforms = platforms.linux; 39 };