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
linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qtserialport.nix
blob
516d38340dc5364e1da4b1eec2d4f0419808b939
1
{ qtModule, stdenv, lib, qtbase, systemd }:
2
3
let inherit (lib) getLib optional; in
4
5
qtModule {
6
name = "qtserialport";
7
qtInputs = [ qtbase ];
8
NIX_CFLAGS_COMPILE =
9
optional stdenv.isLinux
10
''-DNIXPKGS_LIBUDEV="${getLib systemd}/lib/libudev"'';
11
}