summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qtwebchannel.nix
blob: e7d6be534409e61a478532161bf10727ddc4d985 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib
, stdenv
, qtModule
, qtbase
, qtdeclarative
}:

qtModule {
  pname = "qtwebchannel";
  propagatedBuildInputs = [ qtbase qtdeclarative ];
  outputs = [ "out" "dev" ] ++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [ "bin" ];
}