Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
306 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
qtModule,
fetchFromGitHub,
qtbase,
}:
qtModule rec {
pname = "qtmqtt";
version = "6.9.2";
src = fetchFromGitHub {
owner = "qt";
repo = "qtmqtt";
tag = "v${version}";
hash = "sha256-/qz93JmMkJW3+lzT+QKvb/VL+xmbg5H8kKaXK+XN2nE=";
};
propagatedBuildInputs = [ qtbase ];
}