aae53c8f97
This is just an alias for propagatedBuildInputs. Having two names for the same thing just makes things confusing.
9 lines
240 B
Nix
9 lines
240 B
Nix
{ lib, qtModule, stdenv, speechd, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtspeech";
|
|
propagatedBuildInputs = [ ];
|
|
buildInputs = lib.optionals stdenv.isLinux [ speechd ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|