41 lines
953 B
Nix
41 lines
953 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
mmark,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "mmark";
|
|
version = "2.2.32";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mmarkdown";
|
|
repo = "mmark";
|
|
# The tag has an outdated version number and fails the versio ntest
|
|
# The pinned revision includes one extra commit that fixes the issue
|
|
# rev = "v${version}";
|
|
rev = "158e9cca0280c58e205cb69b02bf33d7d826915e";
|
|
hash = "sha256-OzmqtmAAsG3ncrTl2o9rhK75i1WIpDnph0YrY38SlU0=";
|
|
};
|
|
|
|
vendorHash = "sha256-GjR9cOGLB6URHQi+qcyNbP7rm0+y4wypvgUxgJzIgGQ=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = mmark;
|
|
};
|
|
|
|
meta = {
|
|
description = "Powerful markdown processor in Go geared towards the IETF";
|
|
homepage = "https://github.com/mmarkdown/mmark";
|
|
license = with lib.licenses; bsd2;
|
|
maintainers = with lib.maintainers; [ yrashk ];
|
|
mainProgram = "mmark";
|
|
};
|
|
}
|