nixpkgs/pkgs/development/libraries/qt-5/5.8/qtwebsockets.nix

11 lines
220 B
Nix
Raw Normal View History

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