mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
7 lines
124 B
Nix
7 lines
124 B
Nix
{ qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtscxml";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
}
|