mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
9 lines
151 B
Nix
9 lines
151 B
Nix
|
{ qtModule, qtbase, qtdeclarative }:
|
||
|
|
||
|
qtModule {
|
||
|
name = "qtwebchannel";
|
||
|
qtInputs = [ qtbase qtdeclarative ];
|
||
|
outputs = [ "out" "dev" "bin" ];
|
||
|
}
|
||
|
|