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

qtModule {
  pname = "qtserialport";
  qtInputs = [ qtbase ];
  nativeBuildInputs = [ pkg-config ];
  propagatedBuildInputs = [ udev ];
}