2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libpcap, ppp }:
|
2015-03-24 11:06:39 +00:00
|
|
|
|
2016-04-30 00:05:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-04-17 18:42:46 +00:00
|
|
|
pname = "xl2tpd";
|
2019-10-24 18:42:00 +00:00
|
|
|
version = "1.3.15";
|
2015-03-24 11:06:39 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xelerance";
|
|
|
|
repo = "xl2tpd";
|
|
|
|
rev = "v${version}";
|
2019-10-24 18:42:00 +00:00
|
|
|
sha256 = "0ppwza8nwm1av1vldw40gin9wrjrs4l9si50jad414js3k8ycaag";
|
2015-03-24 11:06:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libpcap ];
|
|
|
|
|
2015-04-05 20:14:09 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace l2tp.h --replace /usr/sbin/pppd ${ppp}/sbin/pppd
|
|
|
|
'';
|
|
|
|
|
2015-03-24 11:06:39 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.xelerance.com/software/xl2tpd/";
|
2015-03-24 11:06:39 +00:00
|
|
|
description = "Layer 2 Tunnelling Protocol Daemon (RFC 2661)";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|