lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 23.11-beta 43 lines 1.2 kB view raw
1{ lib 2, buildNpmPackage 3, fetchFromGitHub 4, python3 5, nixosTests 6, nix-update-script 7}: 8 9buildNpmPackage rec { 10 pname = "zigbee2mqtt"; 11 version = "1.33.2"; 12 13 src = fetchFromGitHub { 14 owner = "Koenkk"; 15 repo = "zigbee2mqtt"; 16 rev = version; 17 hash = "sha256-pRY4FOIJwsLSKYieN0D1esKdoUqx62NMFgiYXaXguJ0="; 18 }; 19 20 npmDepsHash = "sha256-9bOFM8Ie0334H2L94ypgkMrB6zyVJ9YTvNnKeBJjOUI="; 21 22 nativeBuildInputs = [ 23 python3 24 ]; 25 26 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt; 27 passthru.updateScript = nix-update-script { }; 28 29 meta = with lib; { 30 changelog = "https://github.com/Koenkk/zigbee2mqtt/releases/tag/${version}"; 31 description = "Zigbee to MQTT bridge using zigbee-shepherd"; 32 homepage = "https://github.com/Koenkk/zigbee2mqtt"; 33 license = licenses.gpl3; 34 longDescription = '' 35 Allows you to use your Zigbee devices without the vendor's bridge or gateway. 36 37 It bridges events and allows you to control your Zigbee devices via MQTT. 38 In this way you can integrate your Zigbee devices with whatever smart home infrastructure you are using. 39 ''; 40 maintainers = with maintainers; [ sweber hexa ]; 41 platforms = platforms.linux; 42 }; 43}