summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.9/qtconnectivity.nix
blob: 8153f0d407858c167b2e82f074e00985ce12429f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ qtSubmodule, qtbase, qtdeclarative }:

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