qt5.full: add qtwebview module to 5.11 and 5.12 packages
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
{ darwin, stdenv, qtModule, qtdeclarative, qtwebengine }:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
qtModule {
|
||||
name = "qtwebview";
|
||||
qtInputs = [ qtdeclarative qtwebengine ];
|
||||
buildInputs = optional (stdenv.isDarwin) [
|
||||
darwin.apple_sdk.frameworks.CoreFoundation
|
||||
darwin.apple_sdk.frameworks.WebKit
|
||||
|
||||
# For:
|
||||
# _OBJC_CLASS_$_NSArray
|
||||
# _OBJC_CLASS_$_NSDate
|
||||
# _OBJC_CLASS_$_NSURL
|
||||
darwin.cf-private
|
||||
];
|
||||
outputs = [ "out" "dev" "bin" ];
|
||||
NIX_LDFLAGS = optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit";
|
||||
}
|
||||
Reference in New Issue
Block a user