aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
13 lines
197 B
Nix
13 lines
197 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, libiconv
|
|
, icu
|
|
, openssl
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qt5compat";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
buildInputs = [ libiconv icu openssl ];
|
|
}
|