xl2tpd: add package
This commit is contained in:
parent
da26c13df5
commit
fe263f4c7e
25
pkgs/tools/networking/xl2tpd/default.nix
Normal file
25
pkgs/tools/networking/xl2tpd/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchFromGitHub, libpcap }:
|
||||
|
||||
let version = "1.3.6";
|
||||
in stdenv.mkDerivation {
|
||||
name = "xl2tpd-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xelerance";
|
||||
repo = "xl2tpd";
|
||||
rev = "v${version}";
|
||||
sha256 = "17lnsk9fsyfp2g5hha7psim6047wj9qs8x4y4w06gl6bbf36jm9z";
|
||||
};
|
||||
|
||||
buildInputs = [ libpcap ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.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 ];
|
||||
};
|
||||
}
|
@ -2965,6 +2965,8 @@ let
|
||||
|
||||
welkin = callPackage ../tools/graphics/welkin {};
|
||||
|
||||
xl2tpd = callPackage ../tools/networking/xl2tpd { };
|
||||
|
||||
testdisk = callPackage ../tools/misc/testdisk { };
|
||||
|
||||
html2text = callPackage ../tools/text/html2text { };
|
||||
|
Loading…
Reference in New Issue
Block a user