about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/freerdp
diff options
context:
space:
mode:
authorvolth <volth@webmaster.ms>2019-04-09 19:19:06 +0000
committerGitHub <noreply@github.com>2019-04-09 19:19:06 +0000
commitc26640c1570e6457b6a43643918604728d792903 (patch)
treecd2d0b76b4283eb16525831b6d21eb3626506668 /pkgs/applications/networking/remote/freerdp
parent36bb2e3beb675af028a48968fb5eeee48e231174 (diff)
downloadnixlib-c26640c1570e6457b6a43643918604728d792903.tar
nixlib-c26640c1570e6457b6a43643918604728d792903.tar.gz
nixlib-c26640c1570e6457b6a43643918604728d792903.tar.bz2
nixlib-c26640c1570e6457b6a43643918604728d792903.tar.lz
nixlib-c26640c1570e6457b6a43643918604728d792903.tar.xz
nixlib-c26640c1570e6457b6a43643918604728d792903.tar.zst
nixlib-c26640c1570e6457b6a43643918604728d792903.zip
freerdp: remove 'optimize' parametes
all `x86_64` has SSE2, so it is needless
Diffstat (limited to 'pkgs/applications/networking/remote/freerdp')
-rw-r--r--pkgs/applications/networking/remote/freerdp/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/applications/networking/remote/freerdp/default.nix b/pkgs/applications/networking/remote/freerdp/default.nix
index 425a064fa96b..2110b76934d6 100644
--- a/pkgs/applications/networking/remote/freerdp/default.nix
+++ b/pkgs/applications/networking/remote/freerdp/default.nix
@@ -9,7 +9,6 @@
 , pcsclite ? null
 , systemd ? null
 , buildServer ? true
-, optimize ? true
 }:
 
 stdenv.mkDerivation rec {
@@ -58,7 +57,7 @@ stdenv.mkDerivation rec {
     ++ optional (cups != null)                "-DWITH_CUPS=ON"
     ++ optional (pcsclite != null)            "-DWITH_PCSC=ON"
     ++ optional buildServer                   "-DWITH_SERVER=ON"
-    ++ optional (optimize && stdenv.isx86_64) "-DWITH_SSE2=ON";
+    ++ optional (stdenv.isx86_64)             "-DWITH_SSE2=ON";
 
   meta = with lib; {
     description = "A Remote Desktop Protocol Client";