diff options
author | makefu <github@syntax-fehler.de> | 2015-10-25 21:54:59 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-10-25 21:54:59 +0100 |
commit | 642583145200f5a2cb8be1b38707e2b2ea3dc3e5 (patch) | |
tree | 6a603b63e9d4ea30545348816de2880369e76927 /makefu/5pkgs/tinc_graphs/default.nix | |
parent | bb16a38df6ad33c7339d4875e948853927015045 (diff) |
k 3 tinc_graphs: is now completely self-contained
Diffstat (limited to 'makefu/5pkgs/tinc_graphs/default.nix')
-rw-r--r-- | makefu/5pkgs/tinc_graphs/default.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/makefu/5pkgs/tinc_graphs/default.nix b/makefu/5pkgs/tinc_graphs/default.nix deleted file mode 100644 index 62a787d30..000000000 --- a/makefu/5pkgs/tinc_graphs/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{stdenv,fetchurl,pkgs,python3Packages, ... }: - -python3Packages.buildPythonPackage rec { - name = "tinc_graphs-${version}"; - 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 = "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"; - license = stdenv.lib.licenses.wtfpl; - }; -} - |