2016-03-24 00:01:39 +01:00
|
|
|
{ stdenv, fetchurl, perl, ppp, iproute, which }:
|
2011-09-14 10:39:51 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-02 00:06:22 +01:00
|
|
|
name = "pptp-${version}";
|
|
|
|
version = "1.9.0";
|
2011-09-14 10:39:51 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pptpclient/${name}.tar.gz";
|
2017-03-02 00:06:22 +01:00
|
|
|
sha256 = "00cj3jqj1hqri856jif4kkzan684qv1cb1zf2amzblvqqnzqq7hb";
|
2011-09-14 10:39:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase =
|
|
|
|
''
|
|
|
|
sed -e 's/install -o root/install/' -i Makefile
|
|
|
|
'';
|
|
|
|
preConfigure =
|
|
|
|
''
|
2017-10-24 13:32:34 +02: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 10:39:51 +02:00
|
|
|
'';
|
|
|
|
|
2016-03-24 00:01:39 +01:00
|
|
|
nativeBuildInputs = [ perl which ];
|
2011-09-14 10:39:51 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "PPTP client for Linux";
|
|
|
|
homepage = http://pptpclient.sourceforge.net/;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = [ ];
|
2011-09-14 10:39:51 +02:00
|
|
|
};
|
|
|
|
}
|