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
python313Packages.traits: fix build (#373698)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-6
/
modules
/
qtgrpc.nix
blob
b344321d11db10ed4d4cb494e2de5ab32616f081
1
{
2
qtModule,
3
qtbase,
4
qtdeclarative,
5
protobuf,
6
grpc,
7
}:
8
9
qtModule {
10
pname = "qtgrpc";
11
propagatedBuildInputs = [
12
qtbase
13
qtdeclarative
14
];
15
buildInputs = [
16
protobuf
17
grpc
18
];
19
}