Merge pull request #163858 from a-m-joseph/wpasupplicant-rename-dbus-option

wpa_supplicant: rename withDbus to dbusSupport
main
Sandro 2 years ago committed by GitHub
commit 28e7df2fe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      pkgs/os-specific/linux/wpa_supplicant/default.nix

@ -1,6 +1,6 @@
{ lib, stdenv, fetchurl, openssl, pkg-config, libnl
, nixosTests, wpa_supplicant_gui
, withDbus ? true, dbus
, dbusSupport ? true, dbus
, withReadline ? true, readline
, withPcsclite ? true, pcsclite
, readOnlyModeSSIDs ? false
@ -68,7 +68,7 @@ stdenv.mkDerivation rec {
CONFIG_EAP_AKA=y
CONFIG_EAP_AKA_PRIME=y
CONFIG_PCSC=y
'' + optionalString withDbus ''
'' + optionalString dbusSupport ''
CONFIG_CTRL_IFACE_DBUS=y
CONFIG_CTRL_IFACE_DBUS_NEW=y
CONFIG_CTRL_IFACE_DBUS_INTRO=y
@ -93,7 +93,7 @@ stdenv.mkDerivation rec {
'';
buildInputs = [ openssl libnl ]
++ optional withDbus dbus
++ optional dbusSupport dbus
++ optional withReadline readline
++ optional withPcsclite pcsclite;

Loading…
Cancel
Save