Compare commits

..

No commits in common. "5cac88580dd2a4d2c4aada8f7f3103e3dcff3415" and "1a5272b7ba987df5b84eef1f92764d335762748e" have entirely different histories.

2 changed files with 4 additions and 9 deletions

View File

@ -1,6 +1,6 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = [
nativeBuildInputs = [
pkgsCross.muslpi.stdenv.cc
pkgsCross.muslpi.sqlite
];

View File

@ -1,9 +1,8 @@
use std::{env, error::Error, fs};
use std::{error::Error, fs};
static WEEKLY: &'static str = include_str!("../../events_weekly.json");
fn main() {
let args = env::args().skip(1).collect::<Vec<_>>();
let url = "http://nixos.fritz.box:12783/custom/event_alerts";
if let Ok(json) = get_json(url) {
@ -12,11 +11,7 @@ fn main() {
buf += "\"events\": ";
buf += &json;
buf += ",";
if args.len() >= 1 && args[0] == "--no-weekly" {
buf += r#""weekly": []"#;
} else {
buf += WEEKLY;
}
buf += "}";
fs::write("events.json", buf.as_bytes()).unwrap();
}