Unverified Commit a2a60770 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

qmqtt: 1.0.3 -> 1.0.4 (#481395)

parents bc57a611 51949b09
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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 = {