15 lines
254 B
Nix
15 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 ];
|
||
|
}
|