3
0
Fork 0
forked from mirrors/nixpkgs

comrak: init at 0.14.0

This commit is contained in:
figsoda 2022-09-26 09:19:25 -04:00
parent 2b5856b4e3
commit faabae26c7
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "comrak";
version = "0.14.0";
src = fetchFromGitHub {
owner = "kivikakk";
repo = pname;
rev = version;
sha256 = "0a01s9lqhqjqpycszfkgmxk60bk4h2ja9ykdhp32aqvcdsjsj763";
};
cargoSha256 = "sha256-+OQ4np+JaHMm3n4uayqlAwx+DTi5k4NgKEOWA2lB/BQ=";
meta = with lib; {
description = "A CommonMark-compatible GitHub Flavored Markdown parser and formatter";
homepage = "https://github.com/kivikakk/comrak";
changelog = "https://github.com/kivikakk/comrak/blob/${version}/changelog.txt";
license = licenses.bsd2;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -3509,6 +3509,8 @@ with pkgs;
compsize = callPackage ../os-specific/linux/compsize { };
comrak = callPackage ../tools/text/comrak { };
cot = with python3Packages; toPythonApplication cot;
coturn = callPackage ../servers/coturn {