c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
14 lines
282 B
Nix
14 lines
282 B
Nix
{ qtModule
|
|
, fetchurl
|
|
, qtbase
|
|
}:
|
|
|
|
qtModule rec {
|
|
pname = "qtmqtt";
|
|
version = "6.5.0";
|
|
src = fetchurl {
|
|
url = "https://github.com/qt/qtmqtt/archive/refs/tags/v${version}.tar.gz";
|
|
sha256 = "qv3GYApd4QKk/Oubx48VhG/Dbl/rvq5ua0UinPlDDNY=";
|
|
};
|
|
qtInputs = [ qtbase ];
|
|
}
|