13 lines
210 B
Nix
13 lines
210 B
Nix
|
{ lib
|
||
|
, stdenv
|
||
|
, qtModule
|
||
|
, qtdeclarative
|
||
|
, qtwebengine
|
||
|
}:
|
||
|
|
||
|
qtModule {
|
||
|
pname = "qtwebview";
|
||
|
propagatedBuildInputs = [ qtdeclarative ]
|
||
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ qtwebengine ];
|
||
|
}
|