aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
9 lines
129 B
Nix
9 lines
129 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtquick3d
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtquickeffectmaker";
|
|
propagatedBuildInputs = [ qtbase qtquick3d ];
|
|
}
|