diff options
author | makefu <github@syntax-fehler.de> | 2015-10-03 19:57:38 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-10-03 19:57:38 +0200 |
commit | 96a8a66cfb7fac2d4ca867c2dd91de2631649471 (patch) | |
tree | 40c080e63f1907fa1fcadf8d973fd26eff4538ce /makefu/5pkgs/tinc_graphs | |
parent | d5d3c9f8b300c507e8464d4083679f02badbd25f (diff) |
add alsa-tools, working tinc_graphs
Diffstat (limited to 'makefu/5pkgs/tinc_graphs')
-rw-r--r-- | makefu/5pkgs/tinc_graphs/default.nix | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/makefu/5pkgs/tinc_graphs/default.nix b/makefu/5pkgs/tinc_graphs/default.nix new file mode 100644 index 000000000..c35a8b02e --- /dev/null +++ b/makefu/5pkgs/tinc_graphs/default.nix @@ -0,0 +1,23 @@ +{stdenv,fetchurl,pkgs,python3Packages, ... }: + +python3Packages.buildPythonPackage rec { + name = "tinc_graphs-${version}"; + version = "0.2.8"; + 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 = "1rvy07ybjpqlsf9qizdp0zyq4ibd6w74k4glbbkw0x7j3j2skzdk"; + }; + preFixup = with pkgs;'' + wrapProgram $out/bin/build-graphs --prefix PATH : "${imagemagick}/bin:${graphviz}/bin" + ''; + meta = { + homepage = http://krebsco.de/; + description = "Create Graphs from Tinc Stats"; + license = stdenv.lib.licenses.wtfpl; + }; +} + |