1 { lib, stdenv, fetchFromGitHub, cmake }:
2 stdenv.mkDerivation rec {
4 version = "0.29.0.gfm.0";
6 src = fetchFromGitHub {
10 sha256 = "0wfr3xwl4wria8vld71flv6vpsdj9aj81yqvj0azidyb8p229a1l";
13 nativeBuildInputs = [ cmake ];
14 # tests load the library dynamically which for unknown reason failed
18 description = "GitHub's fork of cmark, a CommonMark parsing and rendering library and program in C";
19 homepage = "https://github.com/github/cmark-gfm";
20 maintainers = with maintainers; [ cyplo ];
21 platforms = platforms.unix;
22 license = licenses.bsd2;