67cb26b790
- 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
36 lines
911 B
Nix
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;
|
|
};
|
|
}
|