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:
parent
0a4f48c0cc
commit
5a07e3e381
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user