Merge pull request #172773 from squalus/rp-pppoe

rpPPPoE: support cross compile
main
Rick van Schijndel 2 years ago committed by GitHub
commit 8c5c1c6207
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/tools/networking/rp-pppoe/default.nix

@ -16,11 +16,16 @@ stdenv.mkDerivation rec {
cd src
export PPPD=${ppp}/sbin/pppd
'';
configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "rpppoe_cv_pack_bitfields=rev" ];
postConfigure = ''
sed -i Makefile -e 's@DESTDIR)/etc/ppp@out)/etc/ppp@'
sed -i Makefile -e 's@PPPOESERVER_PPPD_OPTIONS=@&$(out)@'
'';
makeFlags = [ "AR:=$(AR)" ];
meta = with lib; {
description = "Roaring Penguin Point-to-Point over Ethernet tool";
platforms = platforms.linux;

Loading…
Cancel
Save