issue2md: init at 1.0.0
This commit is contained in:
parent
6acc670eb9
commit
3b5dd453e1
32
pkgs/by-name/is/issue2md/package.nix
Normal file
32
pkgs/by-name/is/issue2md/package.nix
Normal 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";
|
||||
};
|
||||
})
|
||||
Loading…
x
Reference in New Issue
Block a user