blob: 739274cb6f1b38d2c99ac03ce1525b52b94cc039 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{ depot, pkgs, ... }:
let
sync-to-dir = depot.users.Profpatsch.writers.python3
{
name = "sync-ics-to-dir";
libraries = (py: [
py.httpx
py.icalendar
]);
} ./sync-ics-to-dir.py;
config =
depot.users.Profpatsch.importDhall.importDhall
{
root = ./..;
files = [
"sync-abfall-ics-aichach-friedberg/ics-to-caldav.dhall"
"dhall/lib.dhall"
"ini/ini.dhall"
];
main = "sync-abfall-ics-aichach-friedberg/ics-to-caldav.dhall";
deps = [
];
}
depot.users.Profpatsch.ini.externs;
in
{ inherit config; }
|