mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
home-assistant-custom-components.yassi: init at 0.4.0b2
Beta because stable versions are broken-ish.
This commit is contained in:
parent
475452a88f
commit
27e3a0231b
@ -35,4 +35,6 @@
|
||||
smartthinq-sensors = callPackage ./smartthinq-sensors {};
|
||||
|
||||
waste_collection_schedule = callPackage ./waste_collection_schedule {};
|
||||
|
||||
yassi = callPackage ./yassi {};
|
||||
}
|
||||
|
@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, buildHomeAssistantComponent
|
||||
, fetchFromGitHub
|
||||
, pysmartthings
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "samuelspagl";
|
||||
domain = "samsung_soundbar";
|
||||
version = "0.4.0b2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit owner;
|
||||
repo = "ha_samsung_soundbar";
|
||||
rev = version;
|
||||
hash = "sha256-htAUCQe8mpk+GFwxXkPVnWS0m3mZd2hUt+f4qES+W4U=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pysmartthings ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A HomeAssistant integration for Samsung Soundbars";
|
||||
homepage = "https://ha-samsung-soundbar.vercel.app/";
|
||||
changelog = "https://github.com/samuelspagl/ha_samsung_soundbar/releases/tag/${version}";
|
||||
maintainers = with maintainers; [ k900 ];
|
||||
# https://github.com/samuelspagl/ha_samsung_soundbar/issues/31
|
||||
license = licenses.unfree;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user