summaryrefslogtreecommitdiffstats
path: root/retiolum/scripts/adv_graphgen/tinc_graphs.nix
blob: 662e81ac256f969d1061e805d3db6829278e0a7e (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
with import <nixpkgs> {};
# nix-build Reaktor.nix
# result/bin/reaktor
## or in your env
# nix-env -i -f tinc_graphs.nix

python3Packages.buildPythonPackage rec {
  name = "tinc_graphs-${version}";
  version = "0.2.6";
  propagatedBuildInputs = with pkgs;[
    graphviz
    imagemagick

    # optional if you want geolocation:
    python3Packages.pygeoip
    # geolite-legacy for the db:
    ## ${geolite-legacy}/share/GeoIP/GeoIPCity.dat
  ];
  #src = fetchurl {
    #url = "";
    #sha256 = "1dksw1s1n2hxvnga6pygkr174dywncr0wiggkrkn1srbn2amh1c2";
  #};
  src = ./.;
  meta = {
    homepage = http://krebsco.de/;
    description = "Create Graphs from Tinc Stats";
    license = stdenv.lib.licenses.wtfpl;
  };
}