2016-03-23 23:01:39 +00:00
|
|
|
{ stdenv, fetchurl, perl, ppp, iproute, which }:
|
2011-09-14 09:39:51 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-01 23:06:22 +00:00
|
|
|
name = "pptp-${version}";
|
2018-02-27 19:38:45 +00:00
|
|
|
version = "1.10.0";
|
2011-09-14 09:39:51 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pptpclient/${name}.tar.gz";
|
2018-02-27 19:38:45 +00:00
|
|
|
sha256 = "1x2szfp96w7cag2rcvkdqbsl836ja5148zzfhaqp7kl7wjw2sjc2";
|
2011-09-14 09:39:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase =
|
|
|
|
''
|
|
|
|
sed -e 's/install -o root/install/' -i Makefile
|
|
|
|
'';
|
|
|
|
preConfigure =
|
|
|
|
''
|
2017-10-24 12:32:34 +01:00
|
|
|
makeFlagsArray=( IP=${iproute}/bin/ip PPPD=${ppp}/sbin/pppd \
|
|
|
|
BINDIR=$out/sbin MANDIR=$out/share/man/man8 \
|
|
|
|
PPPDIR=$out/etc/ppp )
|
2011-09-14 09:39:51 +01:00
|
|
|
'';
|
|
|
|
|
2016-03-23 23:01:39 +00:00
|
|
|
nativeBuildInputs = [ perl which ];
|
2011-09-14 09:39:51 +01:00
|
|
|
|
2018-08-17 23:22:12 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-14 09:39:51 +01:00
|
|
|
description = "PPTP client for Linux";
|
|
|
|
homepage = http://pptpclient.sourceforge.net/;
|
2018-08-17 23:22:12 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2011-09-14 09:39:51 +01:00
|
|
|
};
|
|
|
|
}
|