home-assistant-custom-components.calendar_export: init at 0.1.0 (#370039)

authored by Martin Weinelt and committed by GitHub 4f8d7631 1ef77d2f

+30
+30
pkgs/servers/home-assistant/custom-components/calendar_export/package.nix
···
··· 1 + { 2 + lib, 3 + buildHomeAssistantComponent, 4 + fetchFromGitHub, 5 + icalendar, 6 + }: 7 + 8 + buildHomeAssistantComponent rec { 9 + owner = "JosephAbbey"; 10 + domain = "calendar_export"; 11 + version = "0.1.0"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "JosephAbbey"; 15 + repo = "ha_calendar_export"; 16 + tag = "v${version}"; 17 + hash = "sha256-ULnkjnBc0oR1CwA+Mz1RnVamEXOKpgd60xryZMkCQwg="; 18 + }; 19 + 20 + dependencies = [ icalendar ]; 21 + 22 + ignoreVersionRequirement = [ "icalendar" ]; 23 + 24 + meta = { 25 + description = "Export calendar events in the iCalendar format"; 26 + homepage = "https://github.com/JosephAbbey/ha_calendar_export"; 27 + license = lib.licenses.mit; 28 + maintainers = with lib.maintainers; [ hexa ]; 29 + }; 30 + }