aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
13 lines
221 B
Nix
13 lines
221 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtsvg
|
|
, hunspell
|
|
, pkg-config
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtvirtualkeyboard";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative qtsvg hunspell ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|