algia: init at 0.0.74

This commit is contained in:
haruki7049 2024-07-06 14:57:03 +09:00
parent b73ded9497
commit cff7937495
No known key found for this signature in database

View File

@ -0,0 +1,28 @@
{
pkgs,
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "algia";
version = "0.0.74";
src = fetchFromGitHub {
owner = "mattn";
repo = "algia";
rev = "v${version}";
hash = "sha256-t6XDw40FTa7QkZmOkgAufWV1aFjQrLWmycp+zcVYQWs=";
};
vendorHash = "sha256-fko9WC/Rh5fmoypqBuFKiuIuIJYMbKV+1uQKf5tFil0=";
meta = {
description = "CLI application for nostr";
homepage = "https://github.com/mattn/algia";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ haruki7049 ];
mainProgram = "algia";
};
}