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