mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
7 lines
99 B
Nix
7 lines
99 B
Nix
{ qtModule, qtbase }:
|
|
|
|
qtModule {
|
|
pname = "qtx11extras";
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|