libusb1: Fix for pkgsMusl

This reintroduces the changes from 370d483 after they were probably accidentally
removed in b3862e2.
This commit is contained in:
Lila 2020-05-23 16:50:23 +02:00
parent 6817991464
commit 18eff2d1cf

View File

@ -33,7 +33,9 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
preFixup = stdenv.lib.optionalString stdenv.isLinux ''
configureFlags = stdenv.lib.optional (!enableSystemd) "--disable-udev";
preFixup = stdenv.lib.optionalString enableSystemd ''
sed 's,-ludev,-L${stdenv.lib.getLib systemd}/lib -ludev,' -i $out/lib/libusb-1.0.la
'';