fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 buildHomeAssistantComponent,
4 fetchFromGitHub,
5 icalendar,
6}:
7
8buildHomeAssistantComponent 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}