mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
18 lines
323 B
Nix
18 lines
323 B
Nix
{ qtModule
|
|
, lib
|
|
, stdenv
|
|
, qtbase
|
|
, qtdeclarative
|
|
, bluez
|
|
, pkg-config
|
|
, PCSC
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtconnectivity";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = lib.optionals stdenv.isLinux [ bluez ];
|
|
propagatedBuildInputs = lib.optionals stdenv.isDarwin [ PCSC ];
|
|
}
|