mark: init at version 3.5
* A tool for syncing your markdown documentation with Atlassian Confluence pages pr feedback
This commit is contained in:
parent
2ae527c50e
commit
a486c97544
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "mark";
|
||||
version = "3.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kovetskiy";
|
||||
repo = "mark";
|
||||
rev = version;
|
||||
sha256 = "0za4n2caqr3gflfxr1hdd328g7r52h7x0ws7r9mjvdnmwjgc0b2b";
|
||||
};
|
||||
|
||||
vendorSha256 = "1hvizcg5b3y2qgjiw77rb795xz9w1dzr3b8q2ji48ihll27g9f0m";
|
||||
|
||||
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool for syncing your markdown documentation with Atlassian Confluence pages";
|
||||
homepage = "https://github.com/kovetskiy/mark";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ rguevara84 ];
|
||||
};
|
||||
}
|
|
@ -22651,6 +22651,8 @@ in
|
|||
|
||||
markdown-pp = callPackage ../tools/text/markdown-pp { };
|
||||
|
||||
mark = callPackage ../tools/text/mark { };
|
||||
|
||||
marp = callPackage ../applications/office/marp { };
|
||||
|
||||
magnetico = callPackage ../applications/networking/p2p/magnetico { };
|
||||
|
|
Loading…
Reference in New Issue