diff options
author | makefu <github@syntax-fehler.de> | 2018-03-28 11:07:35 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-03-28 11:07:35 +0200 |
commit | ba31c34013519b26883faf8321df11298b37085f (patch) | |
tree | 8a5ec387cc04553bd62a1e2deb32d32636f780c6 | |
parent | 650090bb3541e2b3ffd15af241481afb120e3522 (diff) |
ma arafetch: init
-rw-r--r-- | makefu/2configs/stats/arafetch.nix | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/makefu/2configs/stats/arafetch.nix b/makefu/2configs/stats/arafetch.nix new file mode 100644 index 000000000..e04b12f9c --- /dev/null +++ b/makefu/2configs/stats/arafetch.nix @@ -0,0 +1,36 @@ +{ pkgs, lib, ...}: +with import <stockholm/lib>; +let + pkg = with pkgs.python3Packages;buildPythonPackage rec { + rev = "762d747"; + name = "europastats-${rev}"; + propagatedBuildInputs = [ + requests + docopt + influxdb + beautifulsoup4 + ]; + src = pkgs.fetchgit { + url = "http://cgit.euer.krebsco.de/arafetch"; + inherit rev; + sha256 = "164xiqbrr914lz0nh3i1dxz8iwg6vm2af3i3803cd3242nznw0ws"; + }; + }; + home = "/var/lib/arafetch"; +in { + users.users.arafetch = { + uid = genid "arafetch"; + inherit home; + createHome = true; + }; + + systemd.services.arafetch = { + startAt = "Mon 09:15:00"; + wantedBy = [ "multi-user.target" ]; + environment = { + OUTDIR = home; + }; + path = [ pkg pkgs.git pkgs.wget ]; + script = "${pkg}/bin/weekrun"; + }; +} |