2012-01-04 16:10:27 +01:00
|
|
|
{ stdenv, fetchurl, substituteAll, libpcap }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-02-08 02:43:49 +01:00
|
|
|
version = "2.4.7";
|
2012-01-04 20:04:09 +01:00
|
|
|
name = "ppp-${version}";
|
2009-02-01 14:54:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-02-08 22:29:27 +01:00
|
|
|
url = "mirror://samba/ppp/${name}.tar.gz";
|
2015-02-08 02:43:49 +01:00
|
|
|
sha256 = "0c7vrjxl52pdwi4ckrvfjr08b31lfpgwf3pp0cqy76a77vfs7q02";
|
2009-02-01 14:54:20 +01:00
|
|
|
};
|
|
|
|
|
2012-01-04 16:10:27 +01:00
|
|
|
patches =
|
|
|
|
[ ( substituteAll {
|
|
|
|
src = ./nix-purity.patch;
|
|
|
|
inherit libpcap;
|
2016-03-11 16:12:39 +01:00
|
|
|
glibc = stdenv.cc.libc.dev or stdenv.cc.libc;
|
2012-01-04 16:10:27 +01:00
|
|
|
})
|
2015-02-08 02:43:49 +01:00
|
|
|
# Without nonpriv.patch, pppd --version doesn't work when not run as
|
|
|
|
# root.
|
2012-01-04 16:10:27 +01:00
|
|
|
./nonpriv.patch
|
2017-01-26 00:40:17 +01:00
|
|
|
(fetchurl {
|
|
|
|
name = "CVE-2015-3310.patch";
|
|
|
|
url = "https://anonscm.debian.org/git/collab-maint/pkg-ppp.git/plain/debian/patches/rc_mksid-no-buffer-overflow?h=debian/2.4.7-1%2b4";
|
|
|
|
sha256 = "1dk00j7bg9nfgskw39fagnwv1xgsmyv0xnkd6n1v5gy0psw0lvqh";
|
|
|
|
})
|
2012-01-04 16:10:27 +01:00
|
|
|
];
|
2009-02-01 14:54:20 +01:00
|
|
|
|
2012-01-04 16:10:27 +01:00
|
|
|
buildInputs = [ libpcap ];
|
2009-02-01 14:54:20 +01:00
|
|
|
|
2016-03-24 20:25:42 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
make install
|
|
|
|
install -D -m 755 scripts/{pon,poff,plog} $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
substituteInPlace $out/bin/{pon,poff,plog} --replace "/usr/sbin" "$out/bin"
|
|
|
|
'';
|
|
|
|
|
2009-02-01 14:54:20 +01:00
|
|
|
meta = {
|
2015-02-08 02:43:49 +01:00
|
|
|
homepage = https://ppp.samba.org/;
|
2009-02-01 14:54:20 +01:00
|
|
|
description = "Point-to-point implementation for Linux and Solaris";
|
2012-01-04 16:10:27 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-02-08 20:29:14 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.falsifian ];
|
2009-02-01 14:54:20 +01:00
|
|
|
};
|
|
|
|
}
|