mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
58 lines
1.6 KiB
Nix
58 lines
1.6 KiB
Nix
{ stdenv, fetchsvn, nettools, libgcrypt, openssl, openresolv, perl, gawk, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "vpnc-0.5.3-post-r550";
|
|
src = fetchsvn {
|
|
url = "http://svn.unix-ag.uni-kl.de/vpnc";
|
|
rev = "550";
|
|
sha256 = "0x4ckfv9lpykwmh28v1kyzz91y1j2v48fi8q5nsawrba4q0wlrls";
|
|
};
|
|
|
|
postUnpack = ''
|
|
mv $sourceRoot/trunk/* $sourceRoot/.
|
|
rm -r $sourceRoot/{trunk,branches,tags}
|
|
'';
|
|
|
|
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).
|
|
propagatedBuildInputs = [ nettools ];
|
|
|
|
buildInputs = [libgcrypt perl makeWrapper openssl ];
|
|
|
|
preConfigure = ''
|
|
sed -i 's|^#OPENSSL|OPENSSL|g' Makefile
|
|
|
|
substituteInPlace "vpnc-script" \
|
|
--replace "which" "type -P" \
|
|
--replace "awk" "${gawk}/bin/awk" \
|
|
--replace "/sbin/resolvconf" "${openresolv}/bin/resolvconf"
|
|
|
|
substituteInPlace "config.c" \
|
|
--replace "/etc/vpnc/vpnc-script" "$out/etc/vpnc/vpnc-script"
|
|
|
|
substituteInPlace "pcf2vpnc" \
|
|
--replace "/usr/bin/perl" "${perl}/bin/perl"
|
|
'';
|
|
|
|
postInstall = ''
|
|
for i in "$out/{bin,sbin}/"*
|
|
do
|
|
wrapProgram $i --prefix PATH : \
|
|
"${nettools}/bin:${nettools}/sbin"
|
|
done
|
|
|
|
mkdir -p $out/share/doc/vpnc
|
|
cp README nortel.txt ChangeLog $out/share/doc/vpnc/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.unix-ag.uni-kl.de/~massar/vpnc/";
|
|
description = "Virtual private network (VPN) client for Cisco's VPN concentrators";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|