summary refs log tree commit diff
path: root/pkgs/tools/typesetting/mmark/default.nix
blob: 55de563c538be78e4e5b42e67ed0e2331c535420 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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 = "A 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 ];
    platforms = lib.platforms.unix;
  };
}