nixpkgs/pkgs/tools/networking/pptp/default.nix
Florent Becker 30c739f7a1 pptp: correct reference to ${iproute}/bin/ip
A reference to /bin/ip was left hanging, causing failure when establishing a connection caused
pptp to try and manipulate roots.
2017-10-24 13:32:34 +02:00

32 lines
797 B
Nix

{ stdenv, fetchurl, perl, ppp, iproute, which }:
stdenv.mkDerivation rec {
name = "pptp-${version}";
version = "1.9.0";
src = fetchurl {
url = "mirror://sourceforge/pptpclient/${name}.tar.gz";
sha256 = "00cj3jqj1hqri856jif4kkzan684qv1cb1zf2amzblvqqnzqq7hb";
};
patchPhase =
''
sed -e 's/install -o root/install/' -i Makefile
'';
preConfigure =
''
makeFlagsArray=( IP=${iproute}/bin/ip PPPD=${ppp}/sbin/pppd \
BINDIR=$out/sbin MANDIR=$out/share/man/man8 \
PPPDIR=$out/etc/ppp )
'';
nativeBuildInputs = [ perl which ];
meta = {
description = "PPTP client for Linux";
homepage = http://pptpclient.sourceforge.net/;
platforms = stdenv.lib.platforms.linux;
maintainers = [ ];
};
}