depot/third_party/nixpkgs/pkgs/development/libraries/qt-6/modules/qtpositioning.nix

15 lines
250 B
Nix
Raw Normal View History

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