pulldown-cmark: 0.9.3 -> 0.9.4

We have to switch to `fetchCrate` because upstream forgot to rebuild
their `Cargo.lock` after bumping the version in `Cargo.toml` by the time
they tagged a release.
This commit is contained in:
Charles Hall 2024-01-27 19:09:46 -08:00
parent 0a4f48c0cc
commit 5a07e3e381
No known key found for this signature in database
GPG Key ID: 7B8E0645816E07CF

View File

@ -1,20 +1,18 @@
{ lib
, rustPlatform
, fetchFromGitHub
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "pulldown-cmark";
version = "0.9.3";
version = "0.9.4";
src = fetchFromGitHub {
owner = "raphlinus";
repo = pname;
rev = "v${version}";
hash = "sha256-FK/+6N81qYyFsisPn5SkpubvWMYO7dLX9iHgNY/tAo4=";
src = fetchCrate {
inherit pname version;
hash = "sha256-B+Zxs88/F5B5TpgKLmcNX8rByGVVJcbTuwLcF8Ql9eE=";
};
cargoHash = "sha256-fcVnIb6WPRk133uTMH0xxmEJ3YgsftsTJXjqfOQQPDI=";
cargoHash = "sha256-cIpixyAqeZ/EeEv4ChYiRpbRVD9xqJqxZz7kemxKC30=";
meta = {
description = "A pull parser for CommonMark written in Rust";