nixpkgs/pkgs/tools/networking/rp-pppoe/default.nix
squalus 67cb26b790 rpPPPoE: support cross compile
- prevent a configure time check from running. provided an answer that
  works for x86_64-linux and aarch64-linux
- point the makefile to the correct ar tool
2022-05-12 15:01:42 -07:00

36 lines
911 B
Nix

{ lib, stdenv, fetchurl, ppp } :
let
in
stdenv.mkDerivation rec {
pname = "rp-pppoe";
version = "3.12";
src = fetchurl {
url = "https://www.roaringpenguin.com/files/download/rp-pppoe-${version}.tar.gz";
sha256 = "1hl6rjvplapgsyrap8xj46kc9kqwdlm6ya6gp3lv0ihm0c24wy80";
};
buildInputs = [ ppp ];
preConfigure = ''
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;
homepage = "https://www.roaringpenguin.com/products/pppoe";
license = licenses.gpl2Plus;
};
}