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