11 lines
167 B
Nix
11 lines
167 B
Nix
{ qtModule, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtquickcontrols2";
|
|
propagatedBuildInputs = [ qtdeclarative ];
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"bin"
|
|
];
|
|
}
|