5e9e1146e1
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
16 lines
286 B
Nix
16 lines
286 B
Nix
{ qtModule
|
|
, fetchFromGitHub
|
|
, qtbase
|
|
}:
|
|
|
|
qtModule rec {
|
|
pname = "qtmqtt";
|
|
version = "6.5.2";
|
|
src = fetchFromGitHub {
|
|
owner = "qt";
|
|
repo = "qtmqtt";
|
|
rev = "v${version}";
|
|
hash = "sha256-yyerVzz+nGT5kjNo24zYqZcJmrE50KCp38s3+samjd0=";
|
|
};
|
|
qtInputs = [ qtbase ];
|
|
}
|