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

30 lines
720 B
Nix
Raw Normal View History

2015-04-05 20:14:09 +00:00
{ stdenv, fetchFromGitHub, libpcap, ppp }:
2015-03-24 11:06:39 +00:00
2016-04-30 00:05:07 +00:00
stdenv.mkDerivation rec {
pname = "xl2tpd";
version = "1.3.15";
2015-03-24 11:06:39 +00:00
src = fetchFromGitHub {
owner = "xelerance";
repo = "xl2tpd";
rev = "v${version}";
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)" ];
meta = with stdenv.lib; {
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 ];
};
}