2023-05-22 22:31:57 +00:00
|
|
|
{
|
2024-06-30 15:58:29 +00:00
|
|
|
fetchFromGitHub,
|
|
|
|
stdenv,
|
|
|
|
autoreconfHook,
|
|
|
|
substituteAll,
|
2025-02-10 21:55:08 +00:00
|
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "ppp";
|
2023-05-22 22:31:57 +00:00
|
|
|
version = "2.5.0";
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
repo = "ppp";
|
|
|
|
owner = "ppp-project";
|
|
|
|
rev = "ppp-2.5.0";
|
|
|
|
hash = "sha256-J7udiLiJiJ1PzNxD+XYAUPXZ+ABGXt2U3hSFUWJXe94=";
|
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--disable-eaptls"
|
|
|
|
"--disable-peap"
|
|
|
|
"--disable-openssl-engine"
|
|
|
|
"--without-openssl"
|
2024-10-16 17:57:26 +00:00
|
|
|
"--with-runtime-dir=/run/"
|
2023-05-22 22:31:57 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i.bak pppd/crypto_ms.c -e '/#include <openssl\/evp.h>/d'
|
|
|
|
sed -i.bak pppd/ppp-sha1.c -e 's/u_int32_t/uint32_t/g' -e '1i#include <stdint.h>'
|
|
|
|
'';
|
|
|
|
|
|
|
|
outputs = [
|
|
|
|
"bin"
|
|
|
|
"out"
|
|
|
|
"man"
|
|
|
|
"dev"
|
|
|
|
];
|
|
|
|
}
|