issue2md: init at 1.0.0

This commit is contained in:
Pol Dellaiera 2025-07-16 22:14:36 +02:00
parent 6acc670eb9
commit 3b5dd453e1

View File

@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "issue2md";
version = "1.0.0";
src = fetchFromGitHub {
owner = "bigwhite";
repo = "issue2md";
tag = "v${finalAttrs.version}";
hash = "sha256-QBEHjFu+YWHPeSZSQT1lzTNSIyLQYXEIi+XopdHN710=";
};
vendorHash = null;
ldflags = [
"-s"
"-w"
];
meta = {
description = "CLI tool to convert GitHub issue into Markdown file";
homepage = "https://github.com/bigwhite/issue2md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ drupol ];
mainProgram = "issue2md";
};
})