mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
9 lines
214 B
Nix
9 lines
214 B
Nix
{ qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtremoteobjects";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
# cycle is detected in build when adding "dev" "bin" too
|
|
outputs = [ "out" ];
|
|
}
|