mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 04:34:46 +00:00
Merge pull request #333723 from dotlambda/home-assistant-custom-components.volkswagen_we_connect_id
home-assistant-custom-components.volkswagen_we_connect_id: init at 0.2.0
This commit is contained in:
commit
343e4be9e5
@ -60,6 +60,8 @@
|
||||
|
||||
tuya_local = callPackage ./tuya_local {};
|
||||
|
||||
volkswagen_we_connect_id = callPackage ./volkswagen_we_connect_id { };
|
||||
|
||||
volkswagencarnet = callPackage ./volkswagencarnet { };
|
||||
|
||||
waste_collection_schedule = callPackage ./waste_collection_schedule {};
|
||||
|
@ -0,0 +1,36 @@
|
||||
{
|
||||
ascii-magic,
|
||||
buildHomeAssistantComponent,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
weconnect,
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "mitch-dc";
|
||||
domain = "volkswagen_we-connect_id";
|
||||
version = "0.2.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit owner;
|
||||
repo = "volkswagen_we_connect_id";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-Pmx1jXWXYta/kY51Ih1YRB+QeIfklVvBKcUYU5bHbsQ=";
|
||||
};
|
||||
|
||||
dependencies = [
|
||||
ascii-magic
|
||||
weconnect
|
||||
];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/mitch-dc/volkswagen_we_connect_id/releases/tag/v${version}";
|
||||
description = "Statistics from the Volkswagen ID API";
|
||||
homepage = "https://github.com/mitch-dc/volkswagen_we_connect_id";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user