2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
16 lines
299 B
Nix
16 lines
299 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=";
|
|
};
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|