mdbook-i18n-helpers: fix changelog URL

Upstream changed how they tag their releases, now prefixing them with
mdbook-i18n-helpers-${version}
This commit is contained in:
teutat3s
2026-04-27 22:55:38 +02:00
parent a83745524b
commit 883fce0802
@@ -21,7 +21,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
meta = {
description = "Helpers for a mdbook i18n workflow based on Gettext";
homepage = "https://github.com/google/mdbook-i18n-helpers";
changelog = "https://github.com/google/mdbook-i18n-helpers/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/google/mdbook-i18n-helpers/releases/tag/mdbook-i18n-helpers-${finalAttrs.version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
teutat3s