depot/pkgs/by-name/qm/qmqtt/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

40 lines
646 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, qt5
}:
stdenv.mkDerivation rec {
pname = "qmqtt";
version = "1.0.3";
src = fetchFromGitHub {
owner = "emqx";
repo = "qmqtt";
rev = "v${version}";
hash = "sha256-JLGwEF5e/IKzPzCQBzB710REGWbc/MW+r5AHmyYUkUI=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
cmake
qt5.wrapQtAppsHook
];
buildInputs = [
qt5.qtbase
];
meta = with lib; {
description = "MQTT client for Qt";
homepage = "https://github.com/emqx/qmqtt";
license = licenses.epl10;
maintainers = with maintainers; [ hexa ];
platforms = platforms.all;
};
}