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

qtModule {
  pname = "qtpositioning";
  qtInputs = [ qtbase qtdeclarative qtserialport ];
  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ openssl ];
}