summary refs log tree commit diff
path: root/pkgs/tools/networking/vtun/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/networking/vtun/default.nix')
-rw-r--r--pkgs/tools/networking/vtun/default.nix24
1 files changed, 14 insertions, 10 deletions
diff --git a/pkgs/tools/networking/vtun/default.nix b/pkgs/tools/networking/vtun/default.nix
index e32ee43113e..e14326fe9e6 100644
--- a/pkgs/tools/networking/vtun/default.nix
+++ b/pkgs/tools/networking/vtun/default.nix
@@ -1,14 +1,16 @@
-{stdenv, fetchurl, openssl, lzo, zlib, yacc, flex }:
-stdenv.mkDerivation {
-  name = "vtun-3.0.1";
+{ stdenv, fetchurl, openssl, lzo, zlib, yacc, flex }:
+
+stdenv.mkDerivation rec {
+  name = "vtun-3.0.3";
 
   src = fetchurl {
-    url = mirror://sourceforge/vtun/vtun-3.0.1.tar.gz;
-    sha256 = "1sxf9qq2wlfh1wnrlqkh801v1m9jlqpycxvr2nbyyl7nm2cp8l12";
+    url = "mirror://sourceforge/vtun/${name}.tar.gz";
+    sha256 = "1jxrxp3klhc8az54d5qn84cbc0vdafg319jh84dxkrswii7vxp39";
   };
 
   patchPhase = ''
-    sed -i -e 's/-m 755//' -e 's/-o root -g 0//' Makefile.in 
+    sed -i -e 's/-m 755//' -e 's/-o root -g 0//' Makefile.in
+    sed -i '/strip/d' Makefile.in
   '';
   buildInputs = [ lzo openssl zlib yacc flex ];
 
@@ -17,9 +19,11 @@ stdenv.mkDerivation {
     --with-ssl-headers=${openssl}/include/openssl
     --with-blowfish-headers=${openssl}/include/openssl'';
 
-  meta = { 
-      description="Virtual Tunnels over TCP/IP with traffic shaping, compression and encryption";
-      homepage="http://vtun.sourceforge.net/";
-      license = stdenv.lib.licenses.gpl2;
+  meta = with stdenv.lib; {
+      description = "Virtual Tunnels over TCP/IP with traffic shaping, compression and encryption";
+      homepage = http://vtun.sourceforge.net/;
+      license = licenses.gpl2;
+      platforms = platforms.linux;
+      maintainers = with maintainers; [ pSub ];
   };
 }