Add VPNC, a Cisco-compatible VPN client.

svn path=/nixpkgs/trunk/; revision=10618
This commit is contained in:
Ludovic Courtès
2008-02-10 21:54:01 +00:00
parent 3ebfd510ba
commit df326e6a44
3 changed files with 45 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{stdenv, fetchurl, libgcrypt, perl}:
stdenv.mkDerivation {
name = "vpnc-0.5.1";
src = fetchurl {
url = http://www.unix-ag.uni-kl.de/~massar/vpnc/vpnc-0.5.1.tar.gz;
sha256 = "f63660bd020bbe6a39e8eb67ad60c54d719046c6198a6834371d098947f9a2ed";
};
patches = [ ./makefile.patch ];
buildInputs = [libgcrypt perl];
meta = {
description = "VPNC, a virtual private network (VPN) client for Cisco's VPN concentrators";
homepage = http://www.unix-ag.uni-kl.de/~massar/vpnc/;
license = "GPL";
};
}