From a6d6b96a0839de8f144a33104395d5bf06dc2b96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 9 Aug 2024 15:43:04 +0200 Subject: [PATCH] freerdp: remove useless parenthesis --- .../networking/remote/freerdp/3.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/remote/freerdp/3.nix b/pkgs/applications/networking/remote/freerdp/3.nix index 659438309aaf..29f79e31067b 100644 --- a/pkgs/applications/networking/remote/freerdp/3.nix +++ b/pkgs/applications/networking/remote/freerdp/3.nix @@ -163,19 +163,19 @@ stdenv.mkDerivation (finalAttrs: { "-DWAYLAND_SCANNER=${buildPackages.wayland-scanner}/bin/wayland-scanner" ] ++ lib.mapAttrsToList (k: v: "-D${k}=${cmFlag v}") { BUILD_TESTING = false; # false is recommended by upstream - WITH_CAIRO = (cairo != null); - WITH_CUPS = (cups != null); - WITH_FAAC = (withUnfree && faac != null); - WITH_FAAD2 = (faad2 != null); - WITH_FUSE = (stdenv.isLinux && fuse3 != null); - WITH_JPEG = (libjpeg_turbo != null); - WITH_KRB5 = (libkrb5 != null); - WITH_OPENH264 = (openh264 != null); - WITH_OPUS = (libopus != null); + WITH_CAIRO = cairo != null; + WITH_CUPS = cups != null; + WITH_FAAC = withUnfree && faac != null; + WITH_FAAD2 = faad2 != null; + WITH_FUSE = stdenv.isLinux && fuse3 != null; + WITH_JPEG = libjpeg_turbo != null; + WITH_KRB5 = libkrb5 != null; + WITH_OPENH264 = openh264 != null; + WITH_OPUS = libopus != null; WITH_OSS = false; WITH_MANPAGES = withManPages; - WITH_PCSC = (pcsclite != null); - WITH_PULSE = (libpulseaudio != null); + WITH_PCSC = pcsclite != null; + WITH_PULSE = libpulseaudio != null; WITH_SERVER = buildServer; WITH_WEBVIEW = false; # avoid introducing webkit2gtk-4.0 WITH_VAAPI = false; # false is recommended by upstream