nixpkgs/pkgs/tools/networking/xl2tpd/default.nix
2021-02-09 19:14:21 +00:00

30 lines
717 B
Nix

{ lib, stdenv, fetchFromGitHub, libpcap, ppp }:
stdenv.mkDerivation rec {
pname = "xl2tpd";
version = "1.3.16";
src = fetchFromGitHub {
owner = "xelerance";
repo = "xl2tpd";
rev = "v${version}";
sha256 = "sha256-1Hipek50qjcr0vgTNr4PQyCf1qLZ3UKqu+DLuDNjRUc=";
};
buildInputs = [ libpcap ];
postPatch = ''
substituteInPlace l2tp.h --replace /usr/sbin/pppd ${ppp}/sbin/pppd
'';
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "http://www.xelerance.com/software/xl2tpd/";
description = "Layer 2 Tunnelling Protocol Daemon (RFC 2661)";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];
};
}