From c26640c1570e6457b6a43643918604728d792903 Mon Sep 17 00:00:00 2001 From: volth Date: Tue, 9 Apr 2019 19:19:06 +0000 Subject: freerdp: remove 'optimize' parametes all `x86_64` has SSE2, so it is needless --- pkgs/applications/networking/remote/freerdp/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkgs/applications/networking/remote/freerdp') 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"; -- cgit 1.4.1