b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
16 lines
286 B
Nix
16 lines
286 B
Nix
{ qtModule
|
|
, fetchFromGitHub
|
|
, qtbase
|
|
}:
|
|
|
|
qtModule rec {
|
|
pname = "qtmqtt";
|
|
version = "6.6.0";
|
|
src = fetchFromGitHub {
|
|
owner = "qt";
|
|
repo = "qtmqtt";
|
|
rev = "v${version}";
|
|
hash = "sha256-rFi1w0Z4jLvHvhu0/VOIT0MWmKjy51jSK5M56qLs0gI=";
|
|
};
|
|
qtInputs = [ qtbase ];
|
|
}
|