summary refs log tree commit diff
path: root/pkgs/tools/networking/pptp/default.nix
blob: 5bfb6f58bea2d3cbd36abee44dd01f5426505c7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, fetchurl, perl, ppp, iproute }:

stdenv.mkDerivation rec {
  name = "pptp-1.7.2";

  src = fetchurl {
    url = "mirror://sourceforge/pptpclient/${name}.tar.gz";
    sha256 = "1g4lfv9vhid4v7kx1mlfcrprj3h7ny6g4kv564qzlf9abl3f12p9";
  };

  patchPhase =
    ''
      sed -e 's/install -o root/install/' -i Makefile
      sed -e 's,/bin/ip,${iproute}/sbin/ip,' -i routing.c
    '';
  preConfigure =
    ''
      makeFlagsArray=( PPPD=${ppp}/sbin/pppd BINDIR=$out/sbin \
          MANDIR=$out/share/man/man8 PPPDIR=$out/etc/ppp )
    '';

  nativeBuildInputs = [ perl ];

  meta = {
    description = "PPTP client for Linux";
    homepage = http://pptpclient.sourceforge.net/;
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}