python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / typesetting / mmark / default.nix
blob0513035094bd65a15414a037836bf7e8f2c2b112
1 { lib, buildGoModule, fetchFromGitHub, testers, mmark }:
3 buildGoModule rec {
4   pname = "mmark";
5   version = "2.2.30";
7   src = fetchFromGitHub {
8     owner = "mmarkdown";
9     repo = "mmark";
10     rev = "v${version}";
11     sha256 = "sha256-14SGA3a72i+HYptTEpxf4YiLXZzZ1R/t1agvm3ie4g8=";
12   };
14   vendorSha256 = "sha256-GjR9cOGLB6URHQi+qcyNbP7rm0+y4wypvgUxgJzIgGQ=";
16   ldflags = [ "-s" "-w" ];
18   passthru.tests.version = testers.testVersion {
19     package = mmark;
20   };
22   meta = {
23     description = "A powerful markdown processor in Go geared towards the IETF";
24     homepage = "https://github.com/mmarkdown/mmark";
25     license = with lib.licenses; bsd2;
26     maintainers = with lib.maintainers; [ yrashk ];
27     platforms = lib.platforms.unix;
28   };