summary refs log tree commit diff
path: root/pkgs/tools/networking/vpnc/default.nix
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2015-09-06 19:20:54 +0200
committerThomas Strobel <ts468@cam.ac.uk>2015-09-06 19:27:08 +0200
commit167383c7bff40cc3bc6371808291307e08997b03 (patch)
treef83cbfe25f03ce4dd714ab7bb865b91bedcc37f7 /pkgs/tools/networking/vpnc/default.nix
parent092a5eea285ea5eb142b1a4c41f1ca0f2cd28d65 (diff)
downloadnixpkgs-167383c7bff40cc3bc6371808291307e08997b03.tar
nixpkgs-167383c7bff40cc3bc6371808291307e08997b03.tar.gz
nixpkgs-167383c7bff40cc3bc6371808291307e08997b03.tar.bz2
nixpkgs-167383c7bff40cc3bc6371808291307e08997b03.tar.lz
nixpkgs-167383c7bff40cc3bc6371808291307e08997b03.tar.xz
nixpkgs-167383c7bff40cc3bc6371808291307e08997b03.tar.zst
nixpkgs-167383c7bff40cc3bc6371808291307e08997b03.zip
vpnc: patch to not set a default route when a netmask is given
also, fix the name attribute in the nix expression
Diffstat (limited to 'pkgs/tools/networking/vpnc/default.nix')
-rw-r--r--pkgs/tools/networking/vpnc/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/vpnc/default.nix b/pkgs/tools/networking/vpnc/default.nix
index 5d8971e5c6f..c62d5addb59 100644
--- a/pkgs/tools/networking/vpnc/default.nix
+++ b/pkgs/tools/networking/vpnc/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchsvn, nettools, libgcrypt, openssl, openresolv, perl, gawk, makeWrapper }:
 
 stdenv.mkDerivation rec {
-  name = "vpnc-rev550";
+  name = "vpnc-0.5.3-post-r550";
   src = fetchsvn {
     url = "http://svn.unix-ag.uni-kl.de/vpnc";
     rev = "550";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
     rm -r $sourceRoot/{trunk,branches,tags}
   '';
 
-  patches = [ ./makefile.patch ];
+  patches = [ ./makefile.patch ./no_default_route_when_netmask.patch ];
 
   # The `etc/vpnc/vpnc-script' script relies on `which' and on
   # `ifconfig' as found in net-tools (not GNU Inetutils).