gogoclient: fix url and lower default metric

this allows other routes to take precedence over gogonet
This commit is contained in:
Mathijs Kwik 2012-09-01 21:23:38 +02:00
parent 724451668c
commit 7672f20121

View File

@ -8,7 +8,8 @@ stdenv.mkDerivation rec {
name = "${baseName}-${version}";
src = fetchurl {
url = http://gogo6.com/downloads/gogoc-1_2-RELEASE.tar.gz;
#url = http://gogo6.com/downloads/gogoc-1_2-RELEASE.tar.gz;
url = http://pkgs.fedoraproject.org/repo/pkgs/gogoc/gogoc-1_2-RELEASE.tar.gz/41177ed683cf511cc206c7782c37baa9/gogoc-1_2-RELEASE.tar.gz;
sha256 = "a0ef45c0bd1fc9964dc8ac059b7d78c12674bf67ef641740554e166fa99a2f49";
};
patches = [./gcc46-include-fix.patch ./config-paths.patch ];
@ -28,6 +29,7 @@ stdenv.mkDerivation rec {
--replace "/sbin/route" "${nettools}/sbin/route" \
--replace "/sbin/ip" "${iproute}/sbin/ip" \
--replace "/sbin/sysctl" "${procps}/sbin/sysctl"
sed -i -e 's/^.*Exec \$route -A.*$/& metric 128/' $out/template/linux.sh
'';
meta = {