3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #223842 from NickCao/pptp-cross

pptp: rework packaging, fix cross compilation
This commit is contained in:
Nick Cao 2023-04-03 14:32:11 +08:00 committed by GitHub
commit df3c8300e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,22 +13,30 @@ stdenv.mkDerivation rec {
substituteInPlace Makefile --replace 'install -o root' 'install'
'';
preConfigure = ''
makeFlagsArray=( IP=${iproute2}/bin/ip PPPD=${ppp}/sbin/pppd \
BINDIR=$out/sbin MANDIR=$out/share/man/man8 \
PPPDIR=$out/etc/ppp )
'';
makeFlags = [
"CC:=$(CC)"
"IP=${iproute2}/bin/ip"
"PPPD=${ppp}/bin/pppd"
"BINDIR=${placeholder "out"}/sbin"
"MANDIR=${placeholder "out"}/share/man/man8"
"PPPDIR=${placeholder "out"}/etc/ppp"
];
buildInputs = [ perl ];
strictDeps = true;
postFixup = ''
patchShebangs $out
'';
nativeBuildInputs = [
perl # pod2man
];
buildInputs = [
perl # in shebang of pptpsetup
];
meta = with lib; {
description = "PPTP client for Linux";
homepage = "https://pptpclient.sourceforge.net/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ nickcao ];
};
}