Merge pull request #308874 from Artturin/qtquick

libsForQt5.{qtquick3d,qtpurchasing}: init

authored by Artturin and committed by GitHub 6c2d9861 093724db

+29
+4
pkgs/development/libraries/qt-5/5.15/default.nix
··· 284 qtnetworkauth = callPackage ../modules/qtnetworkauth.nix {}; 285 qtpim = callPackage ../modules/qtpim.nix {}; 286 qtpositioning = callPackage ../modules/qtpositioning.nix {}; 287 qtquick1 = null; 288 qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {}; 289 qtquickcontrols2 = callPackage ../modules/qtquickcontrols2.nix {}; 290 qtremoteobjects = callPackage ../modules/qtremoteobjects.nix {};
··· 284 qtnetworkauth = callPackage ../modules/qtnetworkauth.nix {}; 285 qtpim = callPackage ../modules/qtpim.nix {}; 286 qtpositioning = callPackage ../modules/qtpositioning.nix {}; 287 + qtpurchasing = callPackage ../modules/qtpurchasing.nix { 288 + inherit (darwin.apple_sdk_11_0.frameworks) Foundation StoreKit; 289 + }; 290 qtquick1 = null; 291 + qtquick3d = callPackage ../modules/qtquick3d.nix { }; 292 qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {}; 293 qtquickcontrols2 = callPackage ../modules/qtquickcontrols2.nix {}; 294 qtremoteobjects = callPackage ../modules/qtremoteobjects.nix {};
+14
pkgs/development/libraries/qt-5/modules/qtpurchasing.nix
···
··· 1 + { stdenv 2 + , lib 3 + , qtModule 4 + , qtbase 5 + , qtdeclarative 6 + , StoreKit 7 + , Foundation 8 + }: 9 + 10 + qtModule { 11 + pname = "qtpurchasing"; 12 + propagatedBuildInputs = [ qtbase qtdeclarative ]; 13 + buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Foundation StoreKit ]; 14 + }
+11
pkgs/development/libraries/qt-5/modules/qtquick3d.nix
···
··· 1 + { qtModule 2 + , qtbase 3 + , qtdeclarative 4 + , openssl 5 + }: 6 + 7 + qtModule { 8 + pname = "qtquick3d"; 9 + propagatedBuildInputs = [ qtbase qtdeclarative ]; 10 + buildInputs = [ openssl ]; 11 + }