mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 05:54:24 +00:00
12 lines
140 B
Nix
12 lines
140 B
Nix
{ lib
|
|
, stdenv
|
|
, qtModule
|
|
, qtdeclarative
|
|
, qtwebengine
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtwebview";
|
|
qtInputs = [ qtdeclarative qtwebengine ];
|
|
}
|