nixpkgs/pkgs/tools/security/teler/default.nix

34 lines
823 B
Nix
Raw Normal View History

2020-12-27 00:07:33 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
2020-12-27 00:07:33 +00:00
}:
buildGoModule rec {
pname = "teler";
2021-02-25 17:40:29 +00:00
version = "1.0.3";
2020-12-27 00:07:33 +00:00
src = fetchFromGitHub {
owner = "kitabisa";
repo = "teler";
rev = "v${version}";
2021-02-25 17:40:29 +00:00
sha256 = "sha256-6OeGlpimQtw4w26HRzw2wmd3wjASY199p8XXPD/JMy8=";
2020-12-27 00:07:33 +00:00
};
2021-02-11 23:53:39 +00:00
vendorSha256 = "sha256-L+wjurURpesCA2IK0r1sxvOUvNJT1wiRp75kpe6LH5s=";
2020-12-27 00:07:33 +00:00
# test require internet access
doCheck = false;
meta = with lib; {
2020-12-27 00:07:33 +00:00
description = "Real-time HTTP Intrusion Detection";
longDescription = ''
teler is an real-time intrusion detection and threat alert
based on web log that runs in a terminal with resources that
we collect and provide by the community.
'';
homepage = "https://github.com/kitabisa/teler";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}