blob: 03c9337f5c44ae63f6fa2cabd8b71de9df522bbe (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ pkgs, stdenv, nixosTests }:
let
package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package;
in
package.override rec {
version = "1.24.0";
reconstructLock = true;
src = pkgs.fetchFromGitHub {
owner = "Koenkk";
repo = "zigbee2mqtt";
rev = version;
sha256 = "epQXexhTT6xuB50eudRRzTZHGv0vX+hgMUZcm36red4=";
};
passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
postInstall = ''
npm run build
'';
meta = with pkgs.lib; {
description = "Zigbee to MQTT bridge using zigbee-shepherd";
license = licenses.gpl3;
homepage = "https://github.com/Koenkk/zigbee2mqtt";
maintainers = with maintainers; [ sweber ];
platforms = platforms.linux;
};
}
|