
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
8 lines
128 B
Nix
8 lines
128 B
Nix
{ qtModule, qtbase }:
|
|
|
|
qtModule {
|
|
pname = "qtsvg";
|
|
propagatedBuildInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
}
|