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
forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-6
/
modules
/
qtserialport.nix
blob
00f668ef5631d4255daafc4e54617605758c054c
1
{ qtModule
2
, stdenv
3
, lib
4
, qtbase
5
, udev
6
, pkg-config
7
}:
8
9
qtModule {
10
pname = "qtserialport";
11
nativeBuildInputs = [ pkg-config ];
12
propagatedBuildInputs = [ qtbase ] ++ lib.optionals stdenv.hostPlatform.isLinux [ udev ];
13
}