treewide: fix missing dollar symbol when referencing version

This commit is contained in:
aleksana 2025-11-30 21:04:32 +08:00
commit 2ac15cf667
6 changed files with 6 additions and 6 deletions

View file

@ -121,7 +121,7 @@ stdenv.mkDerivation rec {
with each other, with the help of a P2P network to check for double-spending.
'';
homepage = "https://groestlcoin.org/";
downloadPage = "https://github.com/Groestlcoin/groestlcoin/releases/tag/v{version}/";
downloadPage = "https://github.com/Groestlcoin/groestlcoin/releases/tag/v${version}/";
maintainers = with maintainers; [ gruve-p ];
license = licenses.mit;
platforms = platforms.unix;

View file

@ -137,7 +137,7 @@ python3.pkgs.buildPythonApplication {
of the blockchain.
'';
homepage = "https://groestlcoin.org/";
downloadPage = "https://github.com/Groestlcoin/electrum-grs/releases/tag/v{version}";
downloadPage = "https://github.com/Groestlcoin/electrum-grs/releases/tag/v${version}";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ gruve-p ];

View file

@ -102,7 +102,7 @@ buildGoModule (finalAttrs: {
Linux 5.13+ is required for file access restrictions, Linux 6.7+ for TCP restrictions.
'';
homepage = "https://github.com/Zouuup/landrun";
changelog = "https://github.com/Zouuup/landrun/releases/tag/{finalAttrs.src.tag}";
changelog = "https://github.com/Zouuup/landrun/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.gpl2Only;
maintainers = [ lib.maintainers.fliegendewurst ];
platforms = lib.platforms.linux;

View file

@ -36,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Celery result back end with django";
homepage = "https://github.com/celery/django-celery-results";
changelog = "https://github.com/celery/django-celery-results/blob/v{version}/Changelog";
changelog = "https://github.com/celery/django-celery-results/blob/v${version}/Changelog";
license = licenses.bsd3;
maintainers = [ ];
};

View file

@ -36,7 +36,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Mdformat plugin to ensure frontmatter is respected";
homepage = "https://github.com/butler54/mdformat-frontmatter";
changelog = "https://github.com/butler54/mdformat-frontmatter/blob/v{version}/CHANGELOG.md";
changelog = "https://github.com/butler54/mdformat-frontmatter/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [
aldoborrero

View file

@ -82,7 +82,7 @@ buildPythonPackage rec {
meta = {
description = "Python bindings for the PCRE2 library created by Philip Hazel";
homepage = "https://github.com/grtetrault/pcre2.py";
changelog = "https://github.com/grtetrault/pcre2.py/releases/tag/v{version}";
changelog = "https://github.com/grtetrault/pcre2.py/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ tochiaha ];
};