repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qtspeech.nix
blob
94e66cf400447f6859e7b0c4e9886b50a784001f
1
{ lib, qtModule, stdenv, speechd, pkg-config }:
2
3
qtModule {
4
pname = "qtspeech";
5
propagatedBuildInputs = [ ];
6
buildInputs = lib.optionals stdenv.isLinux [ speechd ];
7
nativeBuildInputs = [ pkg-config ];
8
outputs = [ "out" "dev" ];
9
}