mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
11 lines
209 B
Nix
11 lines
209 B
Nix
{ qtSubmodule, qtdeclarative }:
|
|
|
|
qtSubmodule {
|
|
name = "qtquickcontrols2";
|
|
qtInputs = [ qtdeclarative ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
}
|