mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / by-name / cm / cmark-gfm / package.nix
blob75ff3acdb947489d55f2c29c08ec0d976943c033
1 { lib, stdenv, fetchFromGitHub, cmake }:
2 stdenv.mkDerivation rec {
3   pname = "cmark-gfm";
4   version = "0.29.0.gfm.13";
6   src = fetchFromGitHub {
7     owner = "github";
8     repo = "cmark-gfm";
9     rev = version;
10     sha256 = "sha256-HiSGtRsSbW03R6aKoMVVFOLrwP5aXtpeXUC/bE5M/qo=";
11   };
13   nativeBuildInputs = [ cmake ];
15   doCheck = true;
17   meta = with lib; {
18     description = "GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C";
19     mainProgram = "cmark-gfm";
20     homepage = "https://github.com/github/cmark-gfm";
21     changelog = "https://github.com/github/cmark-gfm/raw/${version}/changelog.txt";
22     maintainers = with maintainers; [ cyplo ];
23     platforms = platforms.unix;
24     license = licenses.bsd2;
25   };