comrak: 0.23.0 -> 0.31.0 (#359209)

This commit is contained in:
Sefa Eyeoglu 2024-11-28 18:29:12 +01:00 committed by GitHub
commit 60e11b72fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,22 +2,22 @@
rustPlatform.buildRustPackage rec {
pname = "comrak";
version = "0.23.0";
version = "0.31.0";
src = fetchFromGitHub {
owner = "kivikakk";
repo = pname;
rev = version;
sha256 = "sha256-RUwJxoD6H0CgS7xyfzMLdoy19p/FuOg82EbocZh7vWs=";
rev = "v${version}";
sha256 = "sha256-4Ea/YCh0a5xToEmyqpvt8fTtsbL/K0RcQBUitHNCKgo=";
};
cargoHash = "sha256-rbGl7jQABZu4aMpzlv49uMuKmw7U+9zLS6pAJIJajR8=";
cargoHash = "sha256-pZ4aHmfiHMvatUY5oTvLtJiIVvknAi3NFVP30rcEmRo=";
meta = with lib; {
description = "CommonMark-compatible GitHub Flavored Markdown parser and formatter";
mainProgram = "comrak";
homepage = "https://github.com/kivikakk/comrak";
changelog = "https://github.com/kivikakk/comrak/blob/${version}/changelog.txt";
changelog = "https://github.com/kivikakk/comrak/blob/v${version}/changelog.txt";
license = licenses.bsd2;
maintainers = with maintainers; [ figsoda kivikakk ];
};