This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
8 lines
130 B
Nix
8 lines
130 B
Nix
{ qtModule, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtdoc";
|
|
propagatedBuildInputs = [ qtdeclarative ];
|
|
outputs = [ "out" ];
|
|
}
|