ntfy-alertmanager: init at 0.3.0

This commit is contained in:
Brian Lee 2024-08-17 09:13:42 -07:00
parent 020e42a3c6
commit ac2b5954c3
No known key found for this signature in database
GPG Key ID: B9A2C1B025EC2C55

View File

@ -0,0 +1,27 @@
{
buildGoModule,
fetchurl,
lib,
}:
buildGoModule rec {
pname = "ntfy-alertmanager";
version = "0.3.0";
src = fetchurl {
url = "https://git.xenrox.net/~xenrox/ntfy-alertmanager/refs/download/v${version}/ntfy-alertmanager-${version}.tar.gz";
hash = "sha256-8VDHeK77dcbATSFfqknlhMSP93OlDNmkzRJxLN4rCVE=";
};
vendorHash = "sha256-WKImEc7FvZm/6noC2+Lz4g+ASFEuRBE8nzTEDbXaWic=";
meta = with lib; {
description = "A bridge between ntfy and Alertmanager.";
homepage = "https://git.xenrox.net/~xenrox/ntfy-alertmanager";
license = licenses.agpl3Only;
maintainers = with maintainers; [
bleetube
fpletz
];
};
}