pulldown-cmark: init at 0.9.2

This commit is contained in:
Charles Hall 2023-02-22 15:02:53 -08:00
parent 7cec24480e
commit 9bdc580037
No known key found for this signature in database
GPG Key ID: 7B8E0645816E07CF
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "pulldown-cmark";
version = "0.9.2";
src = fetchFromGitHub {
owner = "raphlinus";
repo = pname;
rev = "v${version}";
hash = "sha256-AAb+dSJ1oSRuvWu47VvzCeB6pQE6/+u69io2FsZoZHM=";
};
cargoHash = "sha256-oOgwZMmrzYBFH1MaE7nMa1SPCACnfqYY3ttOECsnsVY=";
meta = {
description = "A pull parser for CommonMark written in Rust";
homepage = "https://github.com/raphlinus/pulldown-cmark";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ CobaltCause ];
};
}

View File

@ -11200,6 +11200,8 @@ with pkgs;
pubs = callPackage ../tools/misc/pubs {};
pulldown-cmark = callPackage ../tools/typesetting/pulldown-cmark { };
pulumictl = callPackage ../development/tools/pulumictl { };
pure-prompt = callPackage ../shells/zsh/pure-prompt { };