zigbee2mqtt: enable nixpkgs-update to find update script

This commit is contained in:
Simon Weber 2022-11-07 20:43:12 +01:00
parent 52f9de5b39
commit 6008f4ec11
2 changed files with 5 additions and 1 deletions

View File

@ -14,6 +14,7 @@ package.override rec {
};
passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
passthru.updateScript = ./update.sh;
postInstall = ''
npm run build

View File

@ -1,8 +1,11 @@
#!/usr/bin/env nix-shell
#! nix-shell -I nixpkgs=../../.. -i bash -p nodePackages.node2nix curl jq nix-update common-updater-scripts
#! nix-shell -i bash -p nodePackages.node2nix curl jq nix-update common-updater-scripts
set -euo pipefail
SCRIPT_DIR="$(dirname "$0")"
cd "$SCRIPT_DIR"
CURRENT_VERSION=$(nix eval -f ../../.. --raw zigbee2mqtt.version)
TARGET_VERSION="$(curl https://api.github.com/repos/Koenkk/zigbee2mqtt/releases/latest | jq -r ".tag_name")"