3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #217765 from CobaltCause/init-pulldown-cmark

pulldown-cmark: init at 0.9.2
This commit is contained in:
Sandro 2023-04-11 10:41:21 +02:00 committed by GitHub
commit 412a5ee6cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

@ -11354,6 +11354,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 { };