blob: 4ef9ee61802dfd4d604c35ea1766e5e90f421d6d (
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
|
{
lib,
rustPlatform,
...
}:
rustPlatform.buildRustPackage {
pname = "vuw_course_scraper";
version = "0.1.0";
src =
builtins.path {
name = "vuw_course_scraper";
path = ../.;
};
cargoHash = "sha256-Smg9lDuh2IkMTumVJtjPm3hXnIJ+POmNe5z6xPcQCXI=";
meta = with lib; {
description = "Scraper that can parse all of Victoria University of Wellington's courses, and output them in a computer-readable JSON file.";
homepage = "https://codeberg.org/sophieforrest/vuw_course_scraper";
license = licenses.agpl3Plus;
};
}
|