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

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