issue2md: init at 1.0.0 (#425902)

This commit is contained in:
Pol Dellaiera 2025-07-19 12:32:11 +02:00 committed by GitHub
commit 0cd7aef914
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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";
};
})