Merge pull request #12128 from michelk/cmark/init
cmark: init at 0.23.0
This commit is contained in:
commit
03a842f44d
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -287,6 +287,8 @@ let
|
||||||
|
|
||||||
buildMaven = callPackage ../build-support/build-maven.nix {};
|
buildMaven = callPackage ../build-support/build-maven.nix {};
|
||||||
|
|
||||||
|
cmark = callPackage ../development/libraries/cmark { };
|
||||||
|
|
||||||
dotnetenv = callPackage ../build-support/dotnetenv {
|
dotnetenv = callPackage ../build-support/dotnetenv {
|
||||||
dotnetfx = dotnetfx40;
|
dotnetfx = dotnetfx40;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue