qt6.qtconnectivity: fix build on darwin
This commit is contained in:
parent
dd3eded988
commit
1bf4cbfa5e
2 changed files with 3 additions and 2 deletions
|
@ -91,7 +91,7 @@ let
|
|||
qt5compat = callPackage ./modules/qt5compat.nix { };
|
||||
qtcharts = callPackage ./modules/qtcharts.nix { };
|
||||
qtconnectivity = callPackage ./modules/qtconnectivity.nix {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) PCSC;
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) IOBluetooth PCSC;
|
||||
};
|
||||
qtdatavis3d = callPackage ./modules/qtdatavis3d.nix { };
|
||||
qtdeclarative = callPackage ./modules/qtdeclarative.nix { };
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
, qtdeclarative
|
||||
, bluez
|
||||
, pkg-config
|
||||
, IOBluetooth
|
||||
, PCSC
|
||||
}:
|
||||
|
||||
|
@ -13,5 +14,5 @@ qtModule {
|
|||
qtInputs = [ qtbase qtdeclarative ];
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = lib.optionals stdenv.isLinux [ bluez ];
|
||||
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ PCSC ];
|
||||
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ IOBluetooth PCSC ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue