Merge pull request #300560 from fabaff/teler-bump

teler: 2.0.0-dev.3 -> 2.0.0
This commit is contained in:
Fabian Affolter 2024-04-01 23:15:59 +02:00 committed by GitHub
commit 1daa557629
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,13 +5,13 @@
buildGoModule rec { buildGoModule rec {
pname = "teler"; pname = "teler";
version = "2.0.0-dev.3"; version = "2.0.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "kitabisa"; owner = "kitabisa";
repo = "teler"; repo = "teler";
rev = "v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-2QrHxToHxHTjSl76q9A8fXCkOZkCwh1fu1h+HDUGsGA="; hash = "sha256-3+A1QloZQlH31snWfwYa6rprpKUf3fQc/HQgmKQgV9c=";
}; };
vendorHash = "sha256-gV/PJFcANeYTYUJG3PYNsApYaeBLx76+vVBvcuKDYO4="; vendorHash = "sha256-gV/PJFcANeYTYUJG3PYNsApYaeBLx76+vVBvcuKDYO4=";
@ -19,7 +19,7 @@ buildGoModule rec {
ldflags = [ ldflags = [
"-s" "-s"
"-w" "-w"
"-X ktbs.dev/teler/common.Version=${version}" "-X=ktbs.dev/teler/common.Version=${version}"
]; ];
# test require internet access # test require internet access
@ -27,7 +27,6 @@ buildGoModule rec {
meta = with lib; { meta = with lib; {
description = "Real-time HTTP Intrusion Detection"; description = "Real-time HTTP Intrusion Detection";
mainProgram = "teler.app";
longDescription = '' longDescription = ''
teler is an real-time intrusion detection and threat alert teler is an real-time intrusion detection and threat alert
based on web log that runs in a terminal with resources that based on web log that runs in a terminal with resources that
@ -37,5 +36,6 @@ buildGoModule rec {
changelog = "https://github.com/kitabisa/teler/releases/tag/v${version}"; changelog = "https://github.com/kitabisa/teler/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ fab ]; maintainers = with maintainers; [ fab ];
mainProgram = "teler.app";
}; };
} }