Unverified Commit e9f85389 authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

[Backport release-25.11] treewide: fix missing dollar symbol when referencing version (#466581)

parents 7905ee2a 8a1baabc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -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 = [ ];
  };
+1 −1
Original line number Diff line number Diff line
@@ -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
Loading