about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2024-02-12 19:11:22 +0100
committerArnout Engelen <arnout@bzzt.net>2024-02-12 19:11:22 +0100
commitd3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66 (patch)
tree646734d5850c854fb6bec54411bf3dea161e0d9d
parentd934204a0f8d9198e1e4515dd6fec76a139c87f0 (diff)
downloadnixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.tar
nixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.tar.gz
nixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.tar.bz2
nixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.tar.lz
nixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.tar.xz
nixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.tar.zst
nixlib-d3cb26fc5f66c6c364cbdb7eb29c4f16dcd05f66.zip
home-assistant-custom-components.gpio: 0.0.2 -> 0.0.4
* fix updating gpio lines
* fix inverted logic
* add support for edge detection
* add support for chip number detection (bringing RPi5 support)
-rw-r--r--pkgs/servers/home-assistant/custom-components/gpio/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/home-assistant/custom-components/gpio/default.nix b/pkgs/servers/home-assistant/custom-components/gpio/default.nix
index 98cf56a3b52a..ff06822d664a 100644
--- a/pkgs/servers/home-assistant/custom-components/gpio/default.nix
+++ b/pkgs/servers/home-assistant/custom-components/gpio/default.nix
@@ -7,14 +7,14 @@
 buildHomeAssistantComponent rec {
   owner = "raboof";
   domain = "gpio";
-  version = "0.0.2";
+  version = "0.0.4";
 
   src = fetchFromGitea {
     domain = "codeberg.org";
     owner = "raboof";
     repo = "ha-gpio";
     rev = "v${version}";
-    hash = "sha256-oito5W7uQYgxUQFIynW9G7jbIpmFONWC8FslRdX3gsE=";
+    hash = "sha256-JyyJPI0lbZLJj+016WgS1KXU5rnxUmRMafel4/wKsYk=";
   };
 
   propagatedBuildInputs = [ libgpiod ];