Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / zigbee2mqtt / default.nix
blob0368963ceb519d6ba499609fddca5d9dcd5de002
1 { lib
2 , stdenv
3 , buildNpmPackage
4 , fetchFromGitHub
5 , systemdMinimal
6 , nixosTests
7 , nix-update-script
8 , withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemdMinimal
9 }:
11 buildNpmPackage rec {
12   pname = "zigbee2mqtt";
13   version = "1.39.0";
15   src = fetchFromGitHub {
16     owner = "Koenkk";
17     repo = "zigbee2mqtt";
18     rev = version;
19     hash = "sha256-+JpL6LadrD5FDxtiv+YNkfqylYEp/1aSlkLIaFXl5mw=";
20   };
22   npmDepsHash = "sha256-HMRYbVw4mfxOoPaAzquCEBy97hUC3tR6s1Z8MppJgzY=";
24   buildInputs = lib.optionals withSystemd [
25     systemdMinimal
26   ];
28   npmFlags = lib.optionals (!withSystemd) [ "--omit=optional" ];
30   passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
31   passthru.updateScript = nix-update-script { };
33   meta = with lib; {
34     changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${version}";
35     description = "Zigbee to MQTT bridge using zigbee-shepherd";
36     homepage = "https://github.com/Koenkk/zigbee2mqtt";
37     license = licenses.gpl3;
38     longDescription = ''
39       Allows you to use your Zigbee devices without the vendor's bridge or gateway.
41       It bridges events and allows you to control your Zigbee devices via MQTT.
42       In this way you can integrate your Zigbee devices with whatever smart home infrastructure you are using.
43     '';
44     maintainers = with maintainers; [ sweber hexa ];
45     mainProgram = "zigbee2mqtt";
46   };