treewide: fix missing dollar symbol when referencing version (#466561)

This commit is contained in:
Aleksana
2025-11-30 14:40:04 +00:00
committed by GitHub
6 changed files with 6 additions and 6 deletions
@@ -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;
+1 -1
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 ];
+1 -1
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;
@@ -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 = [ ];
};
@@ -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
@@ -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 ];
};