1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/pptp/default.nix

32 lines
810 B
Nix
Raw Normal View History

2016-03-23 23:01:39 +00:00
{ stdenv, fetchurl, perl, ppp, iproute, which }:
stdenv.mkDerivation rec {
2017-03-01 23:06:22 +00:00
name = "pptp-${version}";
version = "1.10.0";
src = fetchurl {
url = "mirror://sourceforge/pptpclient/${name}.tar.gz";
sha256 = "1x2szfp96w7cag2rcvkdqbsl836ja5148zzfhaqp7kl7wjw2sjc2";
};
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 )
'';
2016-03-23 23:01:39 +00:00
nativeBuildInputs = [ perl which ];
2018-08-17 23:22:12 +01:00
meta = with stdenv.lib; {
description = "PPTP client for Linux";
homepage = http://pptpclient.sourceforge.net/;
2018-08-17 23:22:12 +01:00
license = licenses.gpl2;
platforms = platforms.linux;
};
}