qmqtt: 1.0.3 -> 1.0.4

https://github.com/emqx/qmqtt/releases/tag/v1.0.4
This commit is contained in:
R. Ryantm
2026-01-18 19:07:44 +00:00
committed by Martin Weinelt
parent fef8c21ff7
commit 51949b092c
+5 -5
View File
@@ -3,18 +3,18 @@
stdenv,
fetchFromGitHub,
cmake,
qt5,
qt6,
}:
stdenv.mkDerivation rec {
pname = "qmqtt";
version = "1.0.3";
version = "1.0.4";
src = fetchFromGitHub {
owner = "emqx";
repo = "qmqtt";
rev = "v${version}";
hash = "sha256-JLGwEF5e/IKzPzCQBzB710REGWbc/MW+r5AHmyYUkUI=";
hash = "sha256-cIzBnJdMFY25cWf1rBoRQx1G0/5S32igF8vcte+nyHI=";
};
outputs = [
@@ -24,11 +24,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
cmake
qt5.wrapQtAppsHook
qt6.wrapQtAppsHook
];
buildInputs = [
qt5.qtbase
qt6.qtbase
];
meta = {