
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
9 lines
214 B
Nix
9 lines
214 B
Nix
{ qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtremoteobjects";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
# cycle is detected in build when adding "dev" "bin" too
|
|
outputs = [ "out" ];
|
|
}
|