summaryrefslogtreecommitdiffstats
path: root/shared/2configs/shack/mqtt_sub.nix
blob: dafa06ba9c2f64fa0a459dd3481c64b488191f03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ config, lib, pkgs, ... }:

with import <stockholm/lib>;
let
  pkg = pkgs.stdenv.mkDerivation {
    name = "mqtt2graphite-2017-05-29";
    src = pkgs.fetchgit {
      url = "https://github.com/shackspace/mqtt2graphite/";
      rev = "8c060e6";
      sha256 = "06x7a1j6sfyvvdxg0366fcslhn478anqh4m5hljyf0z29knvz7pg";
    };
    buildInputs = [
      (pkgs.python35.withPackages (pythonPackages: with pythonPackages; [
        docopt
        paho-mqtt
      ]))
    ];
    installPhase = ''
      install -m755 -D sub.py  $out/bin/sub
      install -m755 -D sub2.py  $out/bin/sub-new
    '';
  };
in {
  systemd.services.mqtt_sub  = {
    description = "subscribe to mqtt, send to graphite";
    # after = [ (lib.optional config.services.mosqitto.enable "mosquitto.service") ];
    wantedBy = [ "multi-user.target"  ];
    serviceConfig = {
      User = "nobody";
      ExecStart = "${pkg}/bin/sub-new";
      PrivateTmp = true;
    };
  };
}