nixpkgs/pkgs/development/libraries/qt-5/modules/qtspeech.nix
Ben Wolsieffer 6e769a6a95 libsForQt5.qtspeech: add speechd dependency
Without a speech synthesizer, qtspeech is useless.
2022-05-21 20:38:59 -04:00

10 lines
185 B
Nix

{ qtModule, speechd, pkg-config }:
qtModule {
pname = "qtspeech";
qtInputs = [ ];
buildInputs = [ speechd ];
nativeBuildInputs = [ pkg-config ];
outputs = [ "out" "dev" ];
}