2015-03-06 01:26:15 +01:00
|
|
|
{ stdenv, fetchurl, cups, libssh, libXpm, nxproxy, openldap, makeWrapper, qt4 }:
|
|
|
|
|
2015-05-26 21:43:59 +02:00
|
|
|
let version = "4.0.4.0"; in
|
2015-03-06 01:26:15 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "x2goclient-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://code.x2go.org/releases/source/x2goclient/${name}.tar.gz";
|
2015-05-26 21:43:59 +02:00
|
|
|
sha256 = "0mqn4nvq2w7qja5i4vx9fg2spwzl01p0hmfwbjb0mzir03hmrl46";
|
2015-03-06 01:26:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Graphical NoMachine NX3 remote desktop client";
|
|
|
|
homepage = http://x2go.org/;
|
|
|
|
license = with licenses; gpl2;
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
maintainers = with maintainers; [ nckx ];
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ cups libssh libXpm nxproxy openldap makeWrapper qt4 ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "lrelease-qt4" "${qt4}/bin/lrelease" \
|
|
|
|
--replace "qmake-qt4" "${qt4}/bin/qmake" \
|
|
|
|
--replace "-o root -g root" ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" "ETCDIR=$(out)/etc" ];
|
|
|
|
|
2015-03-06 04:37:28 +01:00
|
|
|
enableParallelBuilding = true;
|
2015-03-06 01:26:15 +01:00
|
|
|
|
|
|
|
installTargets = [ "install_client" "install_man" ];
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nxproxy}/bin";
|
|
|
|
'';
|
|
|
|
}
|