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
- Host: GitHub
- URL: https://github.com/olillin/cal-helper
- Owner: olillin
- License: mit
- Created: 2024-10-16T20:19:02.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-02-17T20:53:23.000Z (5 months ago)
- Last Synced: 2026-02-18T01:33:37.248Z (5 months ago)
- Language: Python
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
];
};
};
}
```