nixpkgs/pkgs/development/libraries/qt-5/5.8/qtconnectivity.nix
2017-06-18 08:44:42 -05:00

10 lines
222 B
Nix

{ qtSubmodule, qtbase, qtdeclarative }:
qtSubmodule {
name = "qtconnectivity";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "out" "dev" "bin" ];
postInstall = ''
moveToOutput "$qtQmlPrefix" "$bin"
'';
}