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

12 lines
221 B
Nix
Raw Normal View History

{ qtSubmodule, qtbase, qtdeclarative }:
qtSubmodule {
name = "qtwebchannel";
qtInputs = [ qtbase qtdeclarative ];
outputs = [ "bin" "dev" "out" ];
2017-05-18 16:19:42 -07:00
postInstall = ''
moveToOutput "$qtQmlPrefix" "$bin"
'';
}