summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2015-02-25 00:36:07 +0100
committerThomas Strobel <ts468@cam.ac.uk>2015-02-25 00:43:15 +0100
commit45856c9bdec755f77bf0080c87aba45af87f1f56 (patch)
tree2e6b908490c7faeab3dd81a12fd620fa357898d5
parent7cc7e9b64a3b4e23fd8d23e84d87cdb787155de7 (diff)
FreeRDP: build server as well
-rw-r--r--pkgs/applications/networking/remote/freerdp/unstable.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/networking/remote/freerdp/unstable.nix b/pkgs/applications/networking/remote/freerdp/unstable.nix
index a1528dd1255b..e66f78f2602d 100644
--- a/pkgs/applications/networking/remote/freerdp/unstable.nix
+++ b/pkgs/applications/networking/remote/freerdp/unstable.nix
@@ -2,6 +2,7 @@
, libXdamage, libXext, glib, alsaLib, ffmpeg, libxkbfile, libXinerama, libXv
, substituteAll
, pulseaudio ? null, cups ? null, pcsclite ? null
+, buildServer ? true, optimize ? true
}:
stdenv.mkDerivation rec {
@@ -33,7 +34,10 @@ stdenv.mkDerivation rec {
"-DWITH_CUNIT=OFF"
] ++ stdenv.lib.optional (pulseaudio != null) "-DWITH_PULSE=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; {
description = "A Remote Desktop Protocol Client";