nixpkgs/pkgs/development/libraries/qt-5/5.9/qtwebchannel.nix

12 lines
221 B
Nix

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