about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtserialport.nix
blob: 27b9eb9c1915a46a3c23e9a1e0ad737c60e91e02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ qtModule
, stdenv
, lib
, qtbase
, udev
, pkg-config
}:

qtModule {
  pname = "qtserialport";
  nativeBuildInputs = [ pkg-config ];
  propagatedBuildInputs = [ qtbase ] ++ lib.optionals stdenv.isLinux [ udev ];
}