mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 20:54:56 +00:00
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
7 lines
117 B
Nix
7 lines
117 B
Nix
{ qtModule, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtquickcontrols";
|
|
propagatedBuildInputs = [ qtdeclarative ];
|
|
}
|