2022-12-17 10:02:37 +00:00
|
|
|
{ lib
|
|
|
|
, buildNpmPackage
|
|
|
|
, fetchFromGitHub
|
2024-01-02 11:29:13 +00:00
|
|
|
, nodejs_18
|
2022-12-17 10:02:37 +00:00
|
|
|
, nixosTests
|
|
|
|
, nix-update-script
|
|
|
|
}:
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
buildNpmPackage rec {
|
|
|
|
pname = "zigbee2mqtt";
|
2024-01-13 08:15:51 +00:00
|
|
|
version = "1.35.1";
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-08-20 17:08:02 +00:00
|
|
|
owner = "Koenkk";
|
|
|
|
repo = "zigbee2mqtt";
|
|
|
|
rev = version;
|
2024-01-13 08:15:51 +00:00
|
|
|
hash = "sha256-ZOIV7PLBnPbisIStC+MNMZgf+Hw/+n4lONpgomRkZEE=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 08:15:51 +00:00
|
|
|
npmDepsHash = "sha256-2WSuc9bmt5kK477c3AMOLFguvXZ2Nl+Qb67j5k7eL3o=";
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
nodejs = nodejs_18;
|
2022-12-17 10:02:37 +00:00
|
|
|
|
|
|
|
passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
|
2022-12-28 21:21:41 +00:00
|
|
|
passthru.updateScript = nix-update-script { };
|
2021-12-19 01:06:50 +00:00
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
meta = with lib; {
|
|
|
|
changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${version}";
|
2020-08-20 17:08:02 +00:00
|
|
|
description = "Zigbee to MQTT bridge using zigbee-shepherd";
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "https://github.com/Koenkk/zigbee2mqtt";
|
2022-12-17 10:02:37 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
longDescription = ''
|
|
|
|
Allows you to use your Zigbee devices without the vendor's bridge or gateway.
|
|
|
|
|
|
|
|
It bridges events and allows you to control your Zigbee devices via MQTT.
|
|
|
|
In this way you can integrate your Zigbee devices with whatever smart home infrastructure you are using.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ sweber hexa ];
|
2020-08-20 17:08:02 +00:00
|
|
|
platforms = platforms.linux;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "zigbee2mqtt";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
}
|