Merge pull request #6556 from ts468/freerdp

FreeRDP: build server as well
This commit is contained in:
vbgl 2015-02-25 11:59:08 +01:00
commit 5f5ebcd74f
1 changed files with 5 additions and 1 deletions

View File

@ -2,6 +2,7 @@
, libXdamage, libXext, glib, alsaLib, ffmpeg, libxkbfile, libXinerama, libXv , libXdamage, libXext, glib, alsaLib, ffmpeg, libxkbfile, libXinerama, libXv
, substituteAll , substituteAll
, pulseaudio ? null, cups ? null, pcsclite ? null , pulseaudio ? null, cups ? null, pcsclite ? null
, buildServer ? true, optimize ? true
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -33,7 +34,10 @@ stdenv.mkDerivation rec {
"-DWITH_CUNIT=OFF" "-DWITH_CUNIT=OFF"
] ++ stdenv.lib.optional (pulseaudio != null) "-DWITH_PULSE=ON" ] ++ stdenv.lib.optional (pulseaudio != null) "-DWITH_PULSE=ON"
++ stdenv.lib.optional (cups != null) "-DWITH_CUPS=ON" ++ stdenv.lib.optional (cups != null) "-DWITH_CUPS=ON"
++ stdenv.lib.optional (pcsclite != null) "-DWITH_PCSC=ON"; ++ stdenv.lib.optional (pcsclite != null) "-DWITH_PCSC=ON"
++ stdenv.lib.optional buildServer "-DWITH_SERVER=ON"
++ stdenv.lib.optional optimize "-DWITH_SSE2=ON";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A Remote Desktop Protocol Client"; description = "A Remote Desktop Protocol Client";