mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
fe0ab944db
The module definitions are factored out and shared between qt56 and qt59. The symlink farm which was created during builds is no longer needed.
9 lines
186 B
Nix
9 lines
186 B
Nix
{ qtModule, qtbase, qtdeclarative, bluez }:
|
|
|
|
qtModule {
|
|
name = "qtconnectivity";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ bluez ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|