forked from mirrors/nixpkgs
9 lines
144 B
Nix
9 lines
144 B
Nix
{ stdenv, qtSubmodule, qtbase, qtdeclarative }:
|
|
|
|
with stdenv.lib;
|
|
|
|
qtSubmodule {
|
|
name = "qtsensors";
|
|
qtInputs = [ qtbase qtdeclarative ];
|
|
}
|