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

19 lines
275 B
Nix

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