mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 17:41:12 +00:00
8 lines
147 B
Nix
8 lines
147 B
Nix
|
{ qtModule, qtbase, qtdeclarative }:
|
||
|
|
||
|
qtModule {
|
||
|
name = "qtsensors";
|
||
|
qtInputs = [ qtbase qtdeclarative ];
|
||
|
outputs = [ "out" "dev" "bin" ];
|
||
|
}
|