libsForQt5.qtpurchasing: init
This commit is contained in:
parent
f96df5a20d
commit
b5f0de80ae
@ -284,6 +284,9 @@ let
|
||||
qtnetworkauth = callPackage ../modules/qtnetworkauth.nix {};
|
||||
qtpim = callPackage ../modules/qtpim.nix {};
|
||||
qtpositioning = callPackage ../modules/qtpositioning.nix {};
|
||||
qtpurchasing = callPackage ../modules/qtpurchasing.nix {
|
||||
inherit (darwin.apple_sdk_11_0.frameworks) Foundation StoreKit;
|
||||
};
|
||||
qtquick1 = null;
|
||||
qtquick3d = callPackage ../modules/qtquick3d.nix { };
|
||||
qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {};
|
||||
|
14
pkgs/development/libraries/qt-5/modules/qtpurchasing.nix
Normal file
14
pkgs/development/libraries/qt-5/modules/qtpurchasing.nix
Normal file
@ -0,0 +1,14 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, qtModule
|
||||
, qtbase
|
||||
, qtdeclarative
|
||||
, StoreKit
|
||||
, Foundation
|
||||
}:
|
||||
|
||||
qtModule {
|
||||
pname = "qtpurchasing";
|
||||
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
||||
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Foundation StoreKit ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user