Merge pull request #12128 from michelk/cmark/init

cmark: init at 0.23.0
This commit is contained in:
Arseniy Seroka 2016-01-04 14:16:53 +03:00
commit 03a842f44d
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
version = "0.23.0";
name = "cmark-${version}";
src = fetchurl {
url = "https://github.com/jgm/cmark/archive/${version}.tar.gz";
sha256 = "87d289965066fce7be247d44c0304af1b20817dcc1b563702302ae33f2be0596";
};
buildInputs = [ cmake ];
meta = {
description = "CommonMark parsing and rendering library and program in C";
homepage = https://github.com/jgm/cmark;
maintainers = [ stdenv.lib.maintainers.michelk ];
};
}

View file

@ -287,6 +287,8 @@ let
buildMaven = callPackage ../build-support/build-maven.nix {};
cmark = callPackage ../development/libraries/cmark { };
dotnetenv = callPackage ../build-support/dotnetenv {
dotnetfx = dotnetfx40;
};