diff options
author | makefu <github@syntax-fehler.de> | 2015-10-17 23:51:02 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-10-17 23:51:02 +0200 |
commit | fa8abf4a270596ec418f923216c57c95c50cf7c8 (patch) | |
tree | ac3727825defc093aa1c12e7f1be0df2510f2d4d /makefu/5pkgs/tinc_graphs | |
parent | c9a3d1a3d9c59e52a7866d7a947ee01a117548e3 (diff) |
m 3,5 tinc_graphs: use new tinc_graphs
Diffstat (limited to 'makefu/5pkgs/tinc_graphs')
-rw-r--r-- | makefu/5pkgs/tinc_graphs/default.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/makefu/5pkgs/tinc_graphs/default.nix b/makefu/5pkgs/tinc_graphs/default.nix index 5bc974157..62a787d30 100644 --- a/makefu/5pkgs/tinc_graphs/default.nix +++ b/makefu/5pkgs/tinc_graphs/default.nix @@ -2,20 +2,21 @@ python3Packages.buildPythonPackage rec { name = "tinc_graphs-${version}"; - version = "0.2.12"; + version = "0.3.6"; propagatedBuildInputs = with pkgs;[ python3Packages.pygeoip ## ${geolite-legacy}/share/GeoIP/GeoIPCity.dat ]; src = fetchurl { url = "https://pypi.python.org/packages/source/t/tinc_graphs/tinc_graphs-${version}.tar.gz"; - sha256 = "03jxvxahpcbpnz4668x32b629dwaaz5jcjkyaijm0zzpgcn4cbgp"; + sha256 = "0ghdx9aaipmppvc2b6cgks4nxw6zsb0fhjrmnisbx7rz0vjvzc74"; }; preFixup = with pkgs;'' wrapProgram $out/bin/build-graphs --prefix PATH : "$out/bin" wrapProgram $out/bin/all-the-graphs --prefix PATH : "${imagemagick}/bin:${graphviz}/bin:$out/bin" wrapProgram $out/bin/tinc-stats2json --prefix PATH : "${tinc}/bin" ''; + meta = { homepage = http://krebsco.de/; description = "Create Graphs from Tinc Stats"; |