2022-12-17 10:02:37 +00:00
|
|
|
{ lib
|
|
|
|
, buildNpmPackage
|
|
|
|
, fetchFromGitHub
|
2024-01-02 11:29:13 +00:00
|
|
|
, nodejs_18
|
2024-02-07 01:22:34 +00:00
|
|
|
, systemdMinimal
|
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-02-29 20:09:43 +00:00
|
|
|
version = "1.35.3";
|
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-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-pj+8BiEcR8Z88J3xxEa4IRBlt9Lv7IoSrKAQ6Y5oydI=";
|
2020-08-20 17:08:02 +00:00
|
|
|
};
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
npmDepsHash = "sha256-15aZyICTRq6DvW2arKtdT+jXDyGtVD7ncer8e4d+03E=";
|
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
|
|
|
|
2024-02-07 01:22:34 +00:00
|
|
|
buildInputs = [
|
|
|
|
systemdMinimal
|
|
|
|
];
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|