home-assistant-custom-components.gpio: init at 0.0.2

This commit is contained in:
Arnout Engelen 2024-01-20 17:04:28 +01:00
parent 842d9d80cf
commit ed211ff443
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA
2 changed files with 30 additions and 0 deletions

View File

@ -6,6 +6,8 @@
govee-lan = callPackage ./govee-lan {};
gpio = callPackage ./gpio {};
miele = callPackage ./miele {};
prometheus_sensor = callPackage ./prometheus_sensor {};

View File

@ -0,0 +1,28 @@
{ lib
, buildHomeAssistantComponent
, fetchFromGitea
, libgpiod
}:
buildHomeAssistantComponent rec {
owner = "raboof";
domain = "gpio";
version = "0.0.2";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "raboof";
repo = "ha-gpio";
rev = "v${version}";
hash = "sha256-oito5W7uQYgxUQFIynW9G7jbIpmFONWC8FslRdX3gsE=";
};
propagatedBuildInputs = [ libgpiod ];
meta = with lib; {
description = "Home Assistant GPIO custom integration";
homepage = "https://codeberg.org/raboof/ha-gpio";
maintainers = with maintainers; [ raboof ];
license = licenses.asl20;
};
}