An open API service indexing awesome lists of open source software.

https://github.com/olillin/cal-helper

Scrape events from chalmers.it
https://github.com/olillin/cal-helper

Last synced: 10 days ago
JSON representation

Scrape events from chalmers.it

Awesome Lists containing this project

README

          

# cal-helper

Helper to scrape news and events from chalmers.it.

## Installation on NixOS

Below is an example of how to add the flake input and install the package:

`flake.nix`

```nix
{
description = "NixOS configuration with cal-helper";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.11";

cal-helper = {
url = "github:olillin/cal-helper";
inputs.nixpkgs.follows = "nixpkgs";
};
};

outputs = {
self,
nixpkgs,
cal-helper,
...
} @ inputs: let
system = "your system";
in {
nixosConfigurations.yourconfiguration = nixpkgs.lib.nixosSystem {
specialArgs = {inherit inputs;};
modules = [
{
environment.defaultPackages = [
cal-helper.packages.${system}
];
}
# Other modules
./configuration.nix
];
};
};
}
```