nixpkgs/pkgs/development/libraries/qt-6/modules/qtmqtt.nix
2024-04-12 08:55:26 -04:00

19 lines
301 B
Nix

{ qtModule
, fetchFromGitHub
, qtbase
}:
qtModule rec {
pname = "qtmqtt";
version = "6.7.0";
src = fetchFromGitHub {
owner = "qt";
repo = "qtmqtt";
rev = "v${version}";
hash = "sha256-LUYb4Wb1fLUwIvDOsVU/iSOyx9pcfPrmiFnQskbT2d8=";
};
propagatedBuildInputs = [ qtbase ];
}