From 8a1baabcc676c8e43931cc344fc4db04da413443 Mon Sep 17 00:00:00 2001 From: aleksana Date: Sun, 30 Nov 2025 21:04:32 +0800 Subject: [PATCH] treewide: fix missing dollar symbol when referencing version (cherry picked from commit 2ac15cf6676e002473183e8bf308bf44a3b316b9) --- pkgs/applications/blockchains/groestlcoin/default.nix | 2 +- pkgs/applications/misc/electrum/grs.nix | 2 +- pkgs/by-name/la/landrun/package.nix | 2 +- .../python-modules/django-celery-results/default.nix | 2 +- .../development/python-modules/mdformat-frontmatter/default.nix | 2 +- pkgs/development/python-modules/pcre2-py/default.nix | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/blockchains/groestlcoin/default.nix b/pkgs/applications/blockchains/groestlcoin/default.nix index b7c3fe5f7044..564e5b4bc82d 100644 --- a/pkgs/applications/blockchains/groestlcoin/default.nix +++ b/pkgs/applications/blockchains/groestlcoin/default.nix @@ -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; diff --git a/pkgs/applications/misc/electrum/grs.nix b/pkgs/applications/misc/electrum/grs.nix index e38374263361..2956977c914c 100644 --- a/pkgs/applications/misc/electrum/grs.nix +++ b/pkgs/applications/misc/electrum/grs.nix @@ -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 ]; diff --git a/pkgs/by-name/la/landrun/package.nix b/pkgs/by-name/la/landrun/package.nix index 4784d4fa3fe7..9396d9985a02 100644 --- a/pkgs/by-name/la/landrun/package.nix +++ b/pkgs/by-name/la/landrun/package.nix @@ -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; diff --git a/pkgs/development/python-modules/django-celery-results/default.nix b/pkgs/development/python-modules/django-celery-results/default.nix index 037fbdec4550..109611ba7eba 100644 --- a/pkgs/development/python-modules/django-celery-results/default.nix +++ b/pkgs/development/python-modules/django-celery-results/default.nix @@ -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 = [ ]; }; diff --git a/pkgs/development/python-modules/mdformat-frontmatter/default.nix b/pkgs/development/python-modules/mdformat-frontmatter/default.nix index 99de3b541ab9..95406c5c8eba 100644 --- a/pkgs/development/python-modules/mdformat-frontmatter/default.nix +++ b/pkgs/development/python-modules/mdformat-frontmatter/default.nix @@ -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 diff --git a/pkgs/development/python-modules/pcre2-py/default.nix b/pkgs/development/python-modules/pcre2-py/default.nix index 82ac9cf16d89..893ca748162f 100644 --- a/pkgs/development/python-modules/pcre2-py/default.nix +++ b/pkgs/development/python-modules/pcre2-py/default.nix @@ -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 ]; };