410b979fe2
GitOrigin-RevId: a64e169e396460d6b5763a1de1dd197df8421688
9 lines
227 B
Nix
9 lines
227 B
Nix
{ lib, qtModule, stdenv, speechd, pkg-config }:
|
|
|
|
qtModule {
|
|
pname = "qtspeech";
|
|
qtInputs = [ ];
|
|
buildInputs = lib.optionals stdenv.isLinux [ speechd ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
outputs = [ "out" "dev" ];
|
|
}
|