summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-10-04 18:55:08 +0200
committermakefu <github@syntax-fehler.de>2015-10-04 19:46:19 +0200
commitd768877c3447c5e54c69f386187414bcf51ce0b0 (patch)
treebda5cafbd737995b264e1196fa745b847f67562e /makefu
parent98e22ae7da764225b5b111a54436c70fedfca5df (diff)
m 5 tinc_graphs: fix path for tinc caller
Diffstat (limited to 'makefu')
-rw-r--r--makefu/5pkgs/tinc_graphs/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/makefu/5pkgs/tinc_graphs/default.nix b/makefu/5pkgs/tinc_graphs/default.nix
index d0a998f6..95f096a3 100644
--- a/makefu/5pkgs/tinc_graphs/default.nix
+++ b/makefu/5pkgs/tinc_graphs/default.nix
@@ -9,10 +9,12 @@ python3Packages.buildPythonPackage rec {
];
src = fetchurl {
url = "https://pypi.python.org/packages/source/t/tinc_graphs/tinc_graphs-${version}.tar.gz";
- sha256 = "1rvy07ybjpqlsf9qizdp0zyq4ibd6w74k4glbbkw0x7j3j2skzdk";
+ sha256 = "0fm063qhjlb8g1xahwcqqrd2dxgd38wwi55rhl1k5chr7zajsqfz";
};
preFixup = with pkgs;''
- wrapProgram $out/bin/build-graphs --prefix PATH : "${imagemagick}/bin:${graphviz}/bin"
+ 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/;