nixpkgs/pkgs/development/libraries/qt-5/modules/qtspeech.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
185 B
Nix
Raw Normal View History

{ qtModule, speechd, pkg-config }:
2018-03-24 11:07:52 +00:00
qtModule {
2021-05-14 11:53:30 +01:00
pname = "qtspeech";
2018-03-24 11:07:52 +00:00
qtInputs = [ ];
buildInputs = [ speechd ];
nativeBuildInputs = [ pkg-config ];
outputs = [ "out" "dev" ];
2018-03-24 11:07:52 +00:00
}