mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 17:34:04 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
14 lines
197 B
Nix
14 lines
197 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, libiconv
|
|
, icu
|
|
, openssl
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qt5compat";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ libiconv icu openssl ];
|
|
}
|