diff options
author | makefu <github@syntax-fehler.de> | 2015-10-03 19:57:38 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-10-04 13:42:29 +0200 |
commit | 041ef784486b554374fd5ad9e172889ad7e631d2 (patch) | |
tree | ced2096d21a3f0b5a964eb7cfdf835048f166f71 /makefu/5pkgs/tinc_graphs | |
parent | 02eb997d3e068753920b3e78d6f48889f77bda54 (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; + }; +} + |