6e769a6a95
Without a speech synthesizer, qtspeech is useless.
10 lines
185 B
Nix
10 lines
185 B
Nix
{ qtModule, speechd, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtspeech";
|
|
qtInputs = [ ];
|
|
buildInputs = [ speechd ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|