pptp: rework packaging, fix cross compilation

This commit is contained in:
Nick Cao 2023-03-30 10:17:44 +08:00
parent fff2bdf73f
commit 1e0712859e
No known key found for this signature in database

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 ];
};
}