main
 1{ pkgs }:
 2
 3pkgs.buildGoModule {
 4  pname = "gcal-to-org";
 5  version = "0.1.0";
 6
 7  src = ./.;
 8
 9  vendorHash = null;
10
11  meta = with pkgs.lib; {
12    description = "Sync Google Calendar to org-mode file (one-way)";
13    homepage = "https://github.com/vdemeester/home";
14    license = licenses.asl20;
15    maintainers = [ ];
16  };
17}