nixpkgs/pkgs/development/libraries/qt-6/modules/qtpositioning.nix
2022-05-23 09:37:40 +08:00

14 lines
237 B
Nix

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