39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ lib, fetchurl, cups, libssh, libXpm, nx-libs, openldap, openssh
|
|
, mkDerivation, qtbase, qtsvg, qtx11extras, qttools, phonon, pkg-config }:
|
|
|
|
mkDerivation rec {
|
|
pname = "x2goclient";
|
|
version = "4.1.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://code.x2go.org/releases/source/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "yZUyZ8QPpnEZrZanO6yx8mYZbaIFnwzc0bjVGZQh0So=";
|
|
};
|
|
|
|
buildInputs = [ cups libssh libXpm nx-libs openldap openssh
|
|
qtbase qtsvg qtx11extras qttools phonon pkg-config ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/onmainwindow.cpp --replace "/usr/sbin/sshd" "${openssh}/bin/sshd"
|
|
substituteInPlace Makefile \
|
|
--replace "SHELL=/bin/bash" "SHELL=$SHELL" \
|
|
--replace "lrelease-qt4" "${qttools.dev}/bin/lrelease" \
|
|
--replace "qmake-qt4" "${qtbase.dev}/bin/qmake" \
|
|
--replace "-o root -g root" ""
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" "ETCDIR=$(out)/etc" "build_client" "build_man" ];
|
|
|
|
installTargets = [ "install_client" "install_man" ];
|
|
|
|
qtWrapperArgs = [ "--suffix PATH : ${nx-libs}/bin:${openssh}/libexec" ];
|
|
|
|
meta = with lib; {
|
|
description = "Graphical NoMachine NX3 remote desktop client";
|
|
homepage = "http://x2go.org/";
|
|
maintainers = with maintainers; [ mkg20001 ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|