mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
29a85a180b
https://github.com/Koenkk/zigbee2mqtt/releases/tag/1.36.1 Unpins nodejs_18, because newer versions are supported.
45 lines
1.2 KiB
Nix
45 lines
1.2 KiB
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
, systemdMinimal
|
|
, nixosTests
|
|
, nix-update-script
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "zigbee2mqtt";
|
|
version = "1.36.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Koenkk";
|
|
repo = "zigbee2mqtt";
|
|
rev = version;
|
|
hash = "sha256-LZ25EWO4cOVnF0bWFKwGfnX7kpzNafp1X6+/JYxn6Ek=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-6EorAqPLusWAEfTePn+O+tgZcv3g82mkPs2hSHPRRfo=";
|
|
|
|
buildInputs = [
|
|
systemdMinimal
|
|
];
|
|
|
|
passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${version}";
|
|
description = "Zigbee to MQTT bridge using zigbee-shepherd";
|
|
homepage = "https://github.com/Koenkk/zigbee2mqtt";
|
|
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 ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "zigbee2mqtt";
|
|
};
|
|
}
|