asciidoc: fix changelog url

src.rev is not a valid attribute. This was found when running
maintainers/scripts/update.nix on buildbot.
This commit is contained in:
Ben Wolsieffer 2022-08-31 16:31:29 -04:00
parent 77c9266241
commit 318edf02d1

View File

@ -282,7 +282,7 @@ in python3.pkgs.buildPythonApplication rec {
fromSource
] ++ lib.optional _enableDitaaFilter binaryBytecode;
homepage = "https://asciidoc-py.github.io/";
changelog = "https://github.com/asciidoc-py/asciidoc-py/blob/${src.rev}/CHANGELOG.adoc";
changelog = "https://github.com/asciidoc-py/asciidoc-py/blob/${version}/CHANGELOG.adoc";
license = licenses.gpl2Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ bjornfor dotlambda ];