
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
10 lines
127 B
Nix
10 lines
127 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtcharts";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
}
|