mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
change optionalString to optional in bluez5, fixes evalutation
This commit is contained in:
parent
6349ff15b1
commit
08f66013ae
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||
"--with-systemduserunitdir=$(out)/etc/systemd/user"
|
||||
"--with-udevdir=$(out)/lib/udev"
|
||||
] ++
|
||||
stdenv.lib.optionalString enableWiimote ["--enable-wiimote"];
|
||||
stdenv.lib.optional enableWiimote [ "--enable-wiimote" ];
|
||||
|
||||
# Work around `make install' trying to create /var/lib/bluetooth.
|
||||
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
||||
|
|
Loading…
Reference in a new issue