nixpkgs/pkgs/tools/networking/ppp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

76 lines
1.5 KiB
Nix
Raw Normal View History

2021-07-20 22:21:36 +03:00
{ lib
, stdenv
, fetchFromGitHub
, substituteAll
, libpcap
, openssl
, bash
2021-07-20 22:21:36 +03:00
}:
stdenv.mkDerivation rec {
2021-07-20 22:21:36 +03:00
version = "2.4.9";
pname = "ppp";
2020-03-07 01:33:06 +03:00
src = fetchFromGitHub {
2021-07-20 22:21:36 +03:00
owner = "ppp-project";
repo = pname;
rev = "${pname}-${version}";
sha256 = "sha256-8+nbqRNfKPLDx+wmuKSkv+BSeG72hKJI4dNqypqeEK4=";
};
2021-07-20 22:21:36 +03:00
patches = [
(substituteAll {
src = ./nix-purity.patch;
glibc = stdenv.cc.libc.dev or stdenv.cc.libc;
openssl_dev = openssl.dev;
openssl_out = openssl.out;
})
# Without nonpriv.patch, pppd --version doesn't work when not run as root.
./nonpriv.patch
];
2021-07-20 22:21:36 +03:00
buildInputs = [
libpcap
openssl
bash
2021-07-20 22:21:36 +03:00
];
postPatch = ''
for file in $(find -name Makefile.linux); do
2020-03-07 01:33:06 +03:00
substituteInPlace "$file" --replace '-m 4550' '-m 550'
done
patchShebangs --host \
scripts/{pon,poff,plog}
'';
makeFlags = [
"CC=${stdenv.cc.targetPrefix}cc"
];
2016-03-24 22:25:42 +03:00
installPhase = ''
runHook preInstall
2016-03-24 22:25:42 +03:00
mkdir -p $out/bin
make install
install -D -m 755 scripts/{pon,poff,plog} $out/bin
runHook postInstall
2016-03-24 22:25:42 +03:00
'';
postFixup = ''
substituteInPlace "$out/bin/pon" --replace "/usr/sbin" "$out/bin"
2016-03-24 22:25:42 +03:00
'';
meta = with lib; {
2021-07-20 22:21:36 +03:00
homepage = "https://ppp.samba.org";
description = "Point-to-point implementation to provide Internet connections over serial lines";
license = with licenses; [
bsdOriginal
publicDomain
gpl2
lgpl2
];
2018-08-18 01:18:17 +03:00
platforms = platforms.linux;
maintainers = [ ];
};
}