summary refs log blame commit diff
path: root/pkgs/tools/typesetting/mmark/default.nix
blob: bc5ddcc9d751ffc77a5754f60a4344d3e8f60351 (plain) (tree)
1
2
3
4
                                         

                    
                  















                                                                                
                                                


                                                   

    
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  pname = "mmark";
  version = "1.3.6";
  rev = "v${version}";

  goPackagePath = "github.com/miekg/mmark";

  src = fetchFromGitHub {
    inherit rev;
    owner = "miekg";
    repo = "mmark";
    sha256 = "0q2zrwa2vwk7a0zhmi000zpqrc01zssrj9c5n3573rg68fksg77m";
  };

  goDeps = ./deps.nix;

  meta = {
    description = "A powerful markdown processor in Go geared towards the IETF";
    homepage = "https://github.com/miekg/mmark";
    license = with lib.licenses; bsd2;
    maintainers = with lib.maintainers; [ yrashk ];
    platforms = lib.platforms.unix;
  };
}