tvl-depot/users/Profpatsch/sync-abfall-ics-aichach-friedberg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
638 B
Nix
Raw Normal View History

{ 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; }