mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 08:33:54 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
15 lines
250 B
Nix
15 lines
250 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtserialport
|
|
, pkg-config
|
|
, openssl
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtpositioning";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative qtserialport ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ];
|
|
}
|