mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
cmark: init at 0.23.0
This commit is contained in:
parent
f300b2861d
commit
6ed6d87afc
19
pkgs/development/libraries/cmark/default.nix
Normal file
19
pkgs/development/libraries/cmark/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -287,6 +287,8 @@ let
|
||||
|
||||
buildMaven = callPackage ../build-support/build-maven.nix {};
|
||||
|
||||
cmark = callPackage ../development/libraries/cmark { };
|
||||
|
||||
dotnetenv = callPackage ../build-support/dotnetenv {
|
||||
dotnetfx = dotnetfx40;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user