treewide: De-inline uses of lib.boolToString

This commit should not change eval results
This commit is contained in:
Malte Brandy 2020-10-14 01:46:17 +02:00
parent 74d875206a
commit cebf9198f3
No known key found for this signature in database
GPG Key ID: 226A2D41EF5378C9
20 changed files with 30 additions and 28 deletions

View File

@ -499,7 +499,7 @@ rec {
show = v: show = v:
if builtins.isString v then ''"${v}"'' if builtins.isString v then ''"${v}"''
else if builtins.isInt v then builtins.toString v else if builtins.isInt v then builtins.toString v
else if builtins.isBool v then if v then "true" else "false" else if builtins.isBool v then boolToString v
else ''<${builtins.typeOf v}>''; else ''<${builtins.typeOf v}>'';
in in
mkOptionType rec { mkOptionType rec {

View File

@ -153,7 +153,7 @@ let
${concatStringsSep "\n" (mapAttrsToList (name: value: let ${concatStringsSep "\n" (mapAttrsToList (name: value: let
includeName = if name == "rspamd_proxy" then "proxy" else name; includeName = if name == "rspamd_proxy" then "proxy" else name;
tryOverride = if value.extraConfig == "" then "true" else "false"; tryOverride = boolToString (value.extraConfig == "");
in '' in ''
worker "${value.type}" { worker "${value.type}" {
type = "${value.type}"; type = "${value.type}";

View File

@ -45,7 +45,7 @@ let
trusted-substituters = ${toString cfg.trustedBinaryCaches} trusted-substituters = ${toString cfg.trustedBinaryCaches}
trusted-public-keys = ${toString cfg.binaryCachePublicKeys} trusted-public-keys = ${toString cfg.binaryCachePublicKeys}
auto-optimise-store = ${boolToString cfg.autoOptimiseStore} auto-optimise-store = ${boolToString cfg.autoOptimiseStore}
require-sigs = ${if cfg.requireSignedBinaryCaches then "true" else "false"} require-sigs = ${boolToString cfg.requireSignedBinaryCaches}
trusted-users = ${toString cfg.trustedUsers} trusted-users = ${toString cfg.trustedUsers}
allowed-users = ${toString cfg.allowedUsers} allowed-users = ${toString cfg.allowedUsers}
${optionalString (!cfg.distributedBuilds) '' ${optionalString (!cfg.distributedBuilds) ''

View File

@ -261,7 +261,7 @@ let
toLua = x: toLua = x:
if builtins.isString x then ''"${x}"'' if builtins.isString x then ''"${x}"''
else if builtins.isBool x then (if x == true then "true" else "false") else if builtins.isBool x then boolToString x
else if builtins.isInt x then toString x else if builtins.isInt x then toString x
else if builtins.isList x then ''{ ${lib.concatStringsSep ", " (map (n: toLua n) x) } }'' else if builtins.isList x then ''{ ${lib.concatStringsSep ", " (map (n: toLua n) x) } }''
else throw "Invalid Lua value"; else throw "Invalid Lua value";

View File

@ -282,12 +282,12 @@ in
services.fail2ban.jails.DEFAULT = '' services.fail2ban.jails.DEFAULT = ''
${optionalString cfg.bantime-increment.enable '' ${optionalString cfg.bantime-increment.enable ''
# Bantime incremental # Bantime incremental
bantime.increment = ${if cfg.bantime-increment.enable then "true" else "false"} bantime.increment = ${boolToString cfg.bantime-increment.enable}
bantime.maxtime = ${cfg.bantime-increment.maxtime} bantime.maxtime = ${cfg.bantime-increment.maxtime}
bantime.factor = ${cfg.bantime-increment.factor} bantime.factor = ${cfg.bantime-increment.factor}
bantime.formula = ${cfg.bantime-increment.formula} bantime.formula = ${cfg.bantime-increment.formula}
bantime.multipliers = ${cfg.bantime-increment.multipliers} bantime.multipliers = ${cfg.bantime-increment.multipliers}
bantime.overalljails = ${if cfg.bantime-increment.overalljails then "true" else "false"} bantime.overalljails = ${boolToString cfg.bantime-increment.overalljails}
''} ''}
# Miscellaneous options # Miscellaneous options
ignoreip = 127.0.0.1/8 ${optionalString config.networking.enableIPv6 "::1"} ${concatStringsSep " " cfg.ignoreIP} ignoreip = 127.0.0.1/8 ${optionalString config.networking.enableIPv6 "::1"} ${concatStringsSep " " cfg.ignoreIP}

View File

@ -19,13 +19,13 @@ let
PresentDevicePolicy=${cfg.presentDevicePolicy} PresentDevicePolicy=${cfg.presentDevicePolicy}
PresentControllerPolicy=${cfg.presentControllerPolicy} PresentControllerPolicy=${cfg.presentControllerPolicy}
InsertedDevicePolicy=${cfg.insertedDevicePolicy} InsertedDevicePolicy=${cfg.insertedDevicePolicy}
RestoreControllerDeviceState=${if cfg.restoreControllerDeviceState then "true" else "false"} RestoreControllerDeviceState=${boolToString cfg.restoreControllerDeviceState}
# this does not seem useful for endusers to change # this does not seem useful for endusers to change
DeviceManagerBackend=uevent DeviceManagerBackend=uevent
IPCAllowedUsers=${concatStringsSep " " cfg.IPCAllowedUsers} IPCAllowedUsers=${concatStringsSep " " cfg.IPCAllowedUsers}
IPCAllowedGroups=${concatStringsSep " " cfg.IPCAllowedGroups} IPCAllowedGroups=${concatStringsSep " " cfg.IPCAllowedGroups}
IPCAccessControlFiles=/var/lib/usbguard/IPCAccessControl.d/ IPCAccessControlFiles=/var/lib/usbguard/IPCAccessControl.d/
DeviceRulesWithPort=${if cfg.deviceRulesWithPort then "true" else "false"} DeviceRulesWithPort=${boolToString cfg.deviceRulesWithPort}
# HACK: that way audit logs still land in the journal # HACK: that way audit logs still land in the journal
AuditFilePath=/dev/null AuditFilePath=/dev/null
''; '';

View File

@ -264,7 +264,7 @@ in
# presented and there's a little delay. # presented and there's a little delay.
environment.etc."gdm/custom.conf".text = '' environment.etc."gdm/custom.conf".text = ''
[daemon] [daemon]
WaylandEnable=${if cfg.gdm.wayland then "true" else "false"} WaylandEnable=${boolToString cfg.gdm.wayland}
${optionalString cfg.autoLogin.enable ( ${optionalString cfg.autoLogin.enable (
if cfg.gdm.autoLogin.delay > 0 then '' if cfg.gdm.autoLogin.delay > 0 then ''
TimedLoginEnable=true TimedLoginEnable=true

View File

@ -55,10 +55,10 @@ let
XauthPath=${pkgs.xorg.xauth}/bin/xauth XauthPath=${pkgs.xorg.xauth}/bin/xauth
DisplayCommand=${Xsetup} DisplayCommand=${Xsetup}
DisplayStopCommand=${Xstop} DisplayStopCommand=${Xstop}
EnableHidpi=${if cfg.enableHidpi then "true" else "false"} EnableHidpi=${boolToString cfg.enableHidpi}
[Wayland] [Wayland]
EnableHidpi=${if cfg.enableHidpi then "true" else "false"} EnableHidpi=${boolToString cfg.enableHidpi}
SessionDir=${dmcfg.sessionData.desktops}/share/wayland-sessions SessionDir=${dmcfg.sessionData.desktops}/share/wayland-sessions
${optionalString dmcfg.autoLogin.enable '' ${optionalString dmcfg.autoLogin.enable ''

View File

@ -27,8 +27,8 @@ in stdenv.mkDerivation {
]; ];
mesonFlags = [ mesonFlags = [
"-Denable_experimental=${if enableExperimental then "true" else "false"}" "-Denable_experimental=${lib.boolToString enableExperimental}"
"-Dinclude_matrix_discovery=${if includeMatrixDiscovery then "true" else "false"}" "-Dinclude_matrix_discovery=${lib.boolToString includeMatrixDiscovery}"
]; ];
meta = with lib; { meta = with lib; {

View File

@ -7,7 +7,7 @@
# ln -s ~/.nix-profile/share/obs/obs-plugins/wlrobs/bin/64bit/libwlrobs.so ~/.config/obs-studio/plugins/wlrobs/bin/64bit # ln -s ~/.nix-profile/share/obs/obs-plugins/wlrobs/bin/64bit/libwlrobs.so ~/.config/obs-studio/plugins/wlrobs/bin/64bit
{ stdenv, fetchhg, wayland, obs-studio { stdenv, fetchhg, wayland, obs-studio
, meson, ninja, pkgconfig, libX11 , meson, ninja, pkgconfig, libX11
, dmabufSupport ? false, libdrm ? null, libGL ? null}: , dmabufSupport ? false, libdrm ? null, libGL ? null, lib}:
assert dmabufSupport -> libdrm != null && libGL != null; assert dmabufSupport -> libdrm != null && libGL != null;
@ -29,7 +29,7 @@ stdenv.mkDerivation {
''; '';
mesonFlags = [ mesonFlags = [
"-Duse_dmabuf=${if dmabufSupport then "true" else "false"}" "-Duse_dmabuf=${lib.boolToString dmabufSupport}"
]; ];
meta = with stdenv.lib; { meta = with stdenv.lib; {

View File

@ -47,7 +47,7 @@ let
removeExpr = refs: ''remove-references-to ${lib.concatMapStrings (ref: " -t ${ref}") refs}''; removeExpr = refs: ''remove-references-to ${lib.concatMapStrings (ref: " -t ${ref}") refs}'';
deleteFlag = if deleteVendor then "true" else "false"; deleteFlag = lib.boolToString deleteVendor;
vendCommand = if runVend then "${vend}/bin/vend" else "false"; vendCommand = if runVend then "${vend}/bin/vend" else "false";

View File

@ -21,6 +21,7 @@
, doCheck ? false , doCheck ? false
, makeWrapper , makeWrapper
, fetchpatch , fetchpatch
, lib
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -74,7 +75,7 @@ stdenv.mkDerivation rec {
mesonFlags = [ mesonFlags = [
"-Ddocs=true" "-Ddocs=true"
"-Dx11=false" # use gdk-pixbuf-xlib "-Dx11=false" # use gdk-pixbuf-xlib
"-Dgir=${if gobject-introspection != null then "true" else "false"}" "-Dgir=${lib.boolToString (gobject-introspection != null)}"
"-Dgio_sniffing=false" "-Dgio_sniffing=false"
]; ];

View File

@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
mesonFlags = [ mesonFlags = [
"-Dsystemd-system-unit-dir=${placeholder "out"}/etc/systemd/system" "-Dsystemd-system-unit-dir=${placeholder "out"}/etc/systemd/system"
"-Ddemo-agent=${if withDemoAgent then "true" else "false"}" "-Ddemo-agent=${boolToString withDemoAgent}"
"--sysconfdir=/etc" "--sysconfdir=/etc"
"-Dsysconfdir_install=${placeholder "out"}/etc" "-Dsysconfdir_install=${placeholder "out"}/etc"
"-Ddbus-srv-user=geoclue" "-Ddbus-srv-user=geoclue"

View File

@ -108,7 +108,7 @@ stdenv.mkDerivation rec {
mesonFlags = [ mesonFlags = [
# Avoid the need for gobject introspection binaries in PATH in cross-compiling case. # Avoid the need for gobject introspection binaries in PATH in cross-compiling case.
# Instead we just copy them over from the native output. # Instead we just copy them over from the native output.
"-Dgtk_doc=${if stdenv.hostPlatform == stdenv.buildPlatform then "true" else "false"}" "-Dgtk_doc=${boolToString (stdenv.hostPlatform == stdenv.buildPlatform)}"
"-Dnls=enabled" "-Dnls=enabled"
"-Ddevbindir=${placeholder ''dev''}/bin" "-Ddevbindir=${placeholder ''dev''}/bin"
]; ];

View File

@ -1,6 +1,6 @@
{ stdenv, fetchurl, glib, libxml2, meson, ninja, pkgconfig, gnome3 { stdenv, fetchurl, glib, libxml2, meson, ninja, pkgconfig, gnome3
, gnomeSupport ? true, sqlite, glib-networking, gobject-introspection, vala , gnomeSupport ? true, sqlite, glib-networking, gobject-introspection, vala
, libpsl, python3, brotli }: , libpsl, python3, brotli, lib }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libsoup"; pname = "libsoup";
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
"-Dtls_check=false" # glib-networking is a runtime dependency, not a compile-time dependency "-Dtls_check=false" # glib-networking is a runtime dependency, not a compile-time dependency
"-Dgssapi=disabled" "-Dgssapi=disabled"
"-Dvapi=enabled" "-Dvapi=enabled"
"-Dgnome=${if gnomeSupport then "true" else "false"}" "-Dgnome=${lib.boolToString gnomeSupport}"
"-Dntlm=disabled" "-Dntlm=disabled"
]; ];

View File

@ -129,7 +129,7 @@ stdenv.mkDerivation {
"-Domx-libs-path=${placeholder "drivers"}/lib/bellagio" "-Domx-libs-path=${placeholder "drivers"}/lib/bellagio"
"-Dva-libs-path=${placeholder "drivers"}/lib/dri" "-Dva-libs-path=${placeholder "drivers"}/lib/dri"
"-Dd3d-drivers-path=${placeholder "drivers"}/lib/d3d" "-Dd3d-drivers-path=${placeholder "drivers"}/lib/d3d"
"-Dgallium-nine=${if enableGalliumNine then "true" else "false"}" # Direct3D in Wine "-Dgallium-nine=${boolToString enableGalliumNine}" # Direct3D in Wine
"-Dosmesa=${if enableOSMesa then "gallium" else "none"}" # used by wine "-Dosmesa=${if enableOSMesa then "gallium" else "none"}" # used by wine
] ++ optionals stdenv.isLinux [ ] ++ optionals stdenv.isLinux [
"-Dglvnd=true" "-Dglvnd=true"
@ -229,7 +229,7 @@ stdenv.mkDerivation {
inherit (libglvnd) driverLink; inherit (libglvnd) driverLink;
}; };
meta = with stdenv.lib; { meta = {
description = "An open source 3D graphics library"; description = "An open source 3D graphics library";
longDescription = '' longDescription = ''
The Mesa project began as an open-source implementation of the OpenGL The Mesa project began as an open-source implementation of the OpenGL

View File

@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
gnFlags = [ gnFlags = [
"use_custom_libcxx=false" "use_custom_libcxx=false"
"is_clang=${if stdenv.cc.isClang then "true" else "false"}" "is_clang=${lib.boolToString stdenv.cc.isClang}"
"use_sysroot=false" "use_sysroot=false"
# "use_system_icu=true" # "use_system_icu=true"
"is_component_build=false" "is_component_build=false"

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opaline, withShared ? true }: { stdenv, fetchurl, ocaml, findlib, ocamlbuild, opaline, withShared ? true, lib }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "ocaml${ocaml.version}-uchar-0.0.2"; name = "ocaml${ocaml.version}-uchar-0.0.2";
@ -10,7 +10,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ ocaml ocamlbuild findlib ]; nativeBuildInputs = [ ocaml ocamlbuild findlib ];
buildInputs = [ findlib ocaml ocamlbuild ]; buildInputs = [ findlib ocaml ocamlbuild ];
buildPhase = "ocaml pkg/build.ml native=true native-dynlink=${if withShared then "true" else "false"}"; buildPhase = "ocaml pkg/build.ml native=true native-dynlink=${lib.boolToString withShared}";
installPhase = "${opaline}/bin/opaline -libdir $OCAMLFIND_DESTDIR"; installPhase = "${opaline}/bin/opaline -libdir $OCAMLFIND_DESTDIR";
configurePlatforms = []; configurePlatforms = [];

View File

@ -43,7 +43,7 @@ in stdenv.mkDerivation rec {
mesonFlags = [ mesonFlags = [
"-Denable_docs=true" "-Denable_docs=true"
"-Denable_kmods=${if mod then "true" else "false"}" "-Denable_kmods=${lib.boolToString mod}"
] ]
++ lib.optional (!shared) "-Ddefault_library=static" ++ lib.optional (!shared) "-Ddefault_library=static"
++ lib.optional stdenv.isx86_64 "-Dmachine=nehalem" ++ lib.optional stdenv.isx86_64 "-Dmachine=nehalem"

View File

@ -19,6 +19,7 @@
, gcr , gcr
, glib , glib
, substituteAll , substituteAll
, lib
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -61,7 +62,7 @@ stdenv.mkDerivation rec {
]; ];
mesonFlags = [ mesonFlags = [
"-Dgcr=${if withGnome then "true" else "false"}" "-Dgcr=${lib.boolToString withGnome}"
]; ];
postPatch = '' postPatch = ''