mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 00:49:52 +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-systemduserunitdir=$(out)/etc/systemd/user"
|
||||||
"--with-udevdir=$(out)/lib/udev"
|
"--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.
|
# Work around `make install' trying to create /var/lib/bluetooth.
|
||||||
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
installFlags = "statedir=$(TMPDIR)/var/lib/bluetooth";
|
||||||
|
|
Loading…
Reference in a new issue