5c370c0b2a
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
14 lines
254 B
Nix
14 lines
254 B
Nix
{ stdenv
|
|
, lib
|
|
, qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, StoreKit
|
|
, Foundation
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtpurchasing";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ Foundation StoreKit ];
|
|
}
|