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:
commit
412a5ee6cb
25
pkgs/tools/typesetting/pulldown-cmark/default.nix
Normal file
25
pkgs/tools/typesetting/pulldown-cmark/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue