2021-01-28 07:09:41 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "mark";
|
2021-02-03 18:00:38 +00:00
|
|
|
version = "5.0";
|
2021-01-28 07:09:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kovetskiy";
|
|
|
|
repo = "mark";
|
|
|
|
rev = version;
|
2021-02-03 18:00:38 +00:00
|
|
|
sha256 = "sha256-PN7YSpTl7RoW5zgoYjXHDFB6sTroSA3TNpTCsOsdB34=";
|
2021-01-28 07:09:41 +00:00
|
|
|
};
|
|
|
|
|
2021-02-03 18:00:38 +00:00
|
|
|
vendorSha256 = "sha256-1YQD+QwCOAPOsj946DNF92LYKfRgXZXcfhIADP8s2CY=";
|
2021-01-28 07:09:41 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|