Gateway6 client update

svn path=/nixpkgs/trunk/; revision=14746
This commit is contained in:
Michael Raskin 2009-03-28 15:22:52 +00:00
parent 5c0764de01
commit cf0010d338
2 changed files with 6 additions and 5 deletions

View file

@ -1,9 +1,10 @@
args : with args; args : with args;
let version = "6.0"; in
rec { rec {
src = fetchurl { src = fetchurl {
url = http://go6.net/4105/file.asp?file_id=150; url = http://go6.net/4105/file.asp?file_id=158;
sha256 = "07svw71wad1kwip7vnsdwcvlhhknqlx8v8kmdnrw11f6xg76w2ln"; sha256 = "0cnxqyw8rdr0sii77n2pv97f0c00dx6ykvnb3mf2acyrarh04nq8";
name = "gateway6-client-5.1.tar.gz"; name = "gateway6-client-${version}.tar.gz";
}; };
buildInputs = [nettools openssl procps]; buildInputs = [nettools openssl procps];
@ -14,7 +15,7 @@ rec {
/* doConfigure should be specified separately */ /* doConfigure should be specified separately */
phaseNames = ["preBuild" "doMakeInstall"]; phaseNames = ["preBuild" "doMakeInstall"];
goSrcDir = "cd ../tspc-advanced"; goSrcDir = "cd tspc-advanced";
preBuild = FullDepEntry ('' preBuild = FullDepEntry (''
sed -e 's@/dev/net/tun@/dev/tun@' -i platform/linux/tsp_tun.c; sed -e 's@/dev/net/tun@/dev/tun@' -i platform/linux/tsp_tun.c;

View file

@ -7262,7 +7262,7 @@ let
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };
gw6c = builderDefsPackage (selectVersion ../os-specific/linux/gw6c "5.1") { gw6c = builderDefsPackage (import ../os-specific/linux/gw6c) {
inherit fetchurl stdenv nettools openssl procps iproute; inherit fetchurl stdenv nettools openssl procps iproute;
}; };