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
ks: add completions for bash and zsh (#364049)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qtspeech.nix
blob
a0b3f4ab201c501121a5de5eea40e9c07bffec4e
1
{
2
lib,
3
qtModule,
4
stdenv,
5
speechd-minimal,
6
pkg-config,
7
}:
8
9
qtModule {
10
pname = "qtspeech";
11
propagatedBuildInputs = [ ];
12
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ speechd-minimal ];
13
nativeBuildInputs = [ pkg-config ];
14
outputs = [
15
"out"
16
"dev"
17
];
18
}