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

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

30 lines
717 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libpcap, ppp }:
2015-03-24 12:06:39 +01:00
2016-04-30 02:05:07 +02:00
stdenv.mkDerivation rec {
pname = "xl2tpd";
2022-01-23 10:01:46 +01:00
version = "1.3.17";
2015-03-24 12:06:39 +01:00
src = fetchFromGitHub {
owner = "xelerance";
repo = "xl2tpd";
rev = "v${version}";
2022-01-23 10:01:46 +01:00
sha256 = "sha256-ibHiQn6YBd80rXIxZeUSTNs9KOJXVGRlUIr753mLURk=";
2015-03-24 12:06:39 +01:00
};
buildInputs = [ libpcap ];
2015-04-05 22:14:09 +02:00
postPatch = ''
substituteInPlace l2tp.h --replace /usr/sbin/pppd ${ppp}/sbin/pppd
'';
2015-03-24 12:06:39 +01:00
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "http://www.xelerance.com/software/xl2tpd/";
2015-03-24 12:06:39 +01:00
description = "Layer 2 Tunnelling Protocol Daemon (RFC 2661)";
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];
};
}