about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules/qtpurchasing.nix
blob: 3c1661c7b0004e9922be1b58f3c4a398abfd02ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv
, lib
, qtModule
, qtbase
, qtdeclarative
, StoreKit
, Foundation
}:

qtModule {
  pname = "qtpurchasing";
  propagatedBuildInputs = [ qtbase qtdeclarative ];
  buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Foundation StoreKit ];
}