depot/third_party/nixpkgs/pkgs/development/libraries/qt-5/modules/qtwebchannel.nix

13 lines
248 B
Nix
Raw Normal View History

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