summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/tinc_graphs/default.nix
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-05-24 01:43:50 +0200
committertv <tv@krebsco.de>2017-05-24 01:43:50 +0200
commitf0b98bd0114df1e1ebb82ff300f9532d86b3eb18 (patch)
tree58a39173f7d6d7caa10a7b8fec1b5a1e54f0c08c /krebs/5pkgs/tinc_graphs/default.nix
parent46d6506916f699e3b707dc41cd68c92b98e50e5a (diff)
krebs/5pkgs: move simple pkgs to a subdir
Diffstat (limited to 'krebs/5pkgs/tinc_graphs/default.nix')
-rw-r--r--krebs/5pkgs/tinc_graphs/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/krebs/5pkgs/tinc_graphs/default.nix b/krebs/5pkgs/tinc_graphs/default.nix
deleted file mode 100644
index 20bbc53b..00000000
--- a/krebs/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.10";
- propagatedBuildInputs = with pkgs;[
- python3Packages.pygeoip
- ## ${geolite-legacy}/share/GeoIP/GeoIPCity.dat
- ];
- src = fetchurl {
- url = "mirror://pypi/t/tinc_graphs/${name}.tar.gz";
- sha256 = "0f4cvb9424fhfmc0hbzmynzh9528fyhx00ayq1nbpgd1p89yw7mc";
- };
- 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;
- };
-}
-