depot/third_party/nixpkgs/pkgs/development/libraries/qt-6/modules/qtspeech.nix

16 lines
236 B
Nix
Raw Normal View History

{ qtModule
, qtbase
, qtmultimedia
, pkg-config
, flite
, alsa-lib
, speechd
}:
qtModule {
pname = "qtspeech";
qtInputs = [ qtbase qtmultimedia ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ flite alsa-lib speechd ];
}