2018-03-26 23:42:46 +00:00
|
|
|
{stdenv, fetchurl, openssl, nettools, iproute, sysctl}:
|
2012-02-28 00:10:05 +00:00
|
|
|
|
|
|
|
let baseName = "gogoclient";
|
|
|
|
version = "1.2";
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${baseName}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-01 19:23:38 +00:00
|
|
|
#url = http://gogo6.com/downloads/gogoc-1_2-RELEASE.tar.gz;
|
2018-11-24 22:53:27 +00:00
|
|
|
url = https://src.fedoraproject.org/repo/pkgs/gogoc/gogoc-1_2-RELEASE.tar.gz/41177ed683cf511cc206c7782c37baa9/gogoc-1_2-RELEASE.tar.gz;
|
2012-02-28 00:10:05 +00:00
|
|
|
sha256 = "a0ef45c0bd1fc9964dc8ac059b7d78c12674bf67ef641740554e166fa99a2f49";
|
|
|
|
};
|
|
|
|
patches = [./gcc46-include-fix.patch ./config-paths.patch ];
|
|
|
|
makeFlags = ["target=linux"];
|
|
|
|
installFlags = ["installdir=$(out)"];
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2012-02-28 00:10:05 +00:00
|
|
|
buildInputs = [openssl];
|
|
|
|
|
|
|
|
preFixup = ''
|
2014-06-30 12:56:10 +00:00
|
|
|
mkdir -p $out/share/${name}
|
2012-02-28 00:10:05 +00:00
|
|
|
chmod 444 $out/bin/gogoc.conf
|
|
|
|
mv $out/bin/gogoc.conf $out/share/${name}/gogoc.conf.sample
|
|
|
|
rm $out/bin/gogoc.conf.sample
|
|
|
|
|
|
|
|
substituteInPlace "$out/template/linux.sh" \
|
2013-03-19 09:21:04 +00:00
|
|
|
--replace "/sbin/ifconfig" "${nettools}/bin/ifconfig" \
|
|
|
|
--replace "/sbin/route" "${nettools}/bin/route" \
|
2012-02-28 00:10:05 +00:00
|
|
|
--replace "/sbin/ip" "${iproute}/sbin/ip" \
|
2018-03-26 23:42:46 +00:00
|
|
|
--replace "/sbin/sysctl" "${sysctl}/bin/sysctl"
|
2012-09-01 19:23:38 +00:00
|
|
|
sed -i -e 's/^.*Exec \$route -A.*$/& metric 128/' $out/template/linux.sh
|
2012-02-28 00:10:05 +00:00
|
|
|
'';
|
|
|
|
|
2018-08-23 15:57:20 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://ipv6.ernet.in/Tunnel_broker;
|
2012-02-28 00:10:05 +00:00
|
|
|
description = "Client to connect to the Freenet6 IPv6 tunnel broker service";
|
2018-08-23 15:57:20 +00:00
|
|
|
maintainers = [ maintainers.bluescreen303 ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
2012-02-28 00:10:05 +00:00
|
|
|
};
|
|
|
|
}
|