treewide: fix missing "v" in meta.changelog URL

This PR adds a missing "v" in the meta.changelog URL for packages that
use finalAttrs.
Previously the URLs lead to a 404 page.
This commit is contained in:
Jost Alemann
2026-01-02 15:31:07 +01:00
parent eaf3f6b552
commit 7db294fd4c
8 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Schrodinger-developed 2D Coordinate Generation";
homepage = "https://github.com/schrodinger/coordgenlibs";
changelog = "https://github.com/schrodinger/coordgenlibs/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/schrodinger/coordgenlibs/releases/tag/v${finalAttrs.version}";
maintainers = [ lib.maintainers.rmcgibbo ];
license = lib.licenses.bsd3;
};
+1 -1
View File
@@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: {
};
meta = {
changelog = "https://github.com/cowsql/cowsql/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/cowsql/cowsql/releases/tag/v${finalAttrs.version}";
description = "Embeddable, replicated and fault tolerant SQL engine";
homepage = "https://github.com/cowsql/cowsql";
license = lib.licenses.lgpl3Only;
@@ -63,7 +63,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Fast and effective C++ file optimizer";
homepage = "https://github.com/fhanau/Efficient-Compression-Tool";
changelog = "https://github.com/fhanau/Efficient-Compression-Tool/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/fhanau/Efficient-Compression-Tool/releases/tag/v${finalAttrs.version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
jwillikers
+1 -1
View File
@@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: {
description = "Modular visual interface for GDB in Python";
homepage = "https://github.com/cyrus-and/gdb-dashboard";
downloadPage = "https://github.com/cyrus-and/gdb-dashboard";
changelog = "https://github.com/cyrus-and/gdb-dashboard/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/cyrus-and/gdb-dashboard/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
+1 -1
View File
@@ -98,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Intel 'Single Program, Multiple Data' Compiler, a vectorised language";
homepage = "https://ispc.github.io/";
changelog = "https://github.com/ispc/ispc/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/ispc/ispc/releases/tag/v${finalAttrs.version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
thoughtpolice
+1 -1
View File
@@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Universal status bar content generator";
homepage = "https://github.com/shdown/luastatus";
changelog = "https://github.com/shdown/luastatus/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/shdown/luastatus/releases/tag/v${finalAttrs.version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ kashw2 ];
platforms = lib.platforms.linux;
+1 -1
View File
@@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Rapid word display tool for improved reading focus and reduced eye movement";
homepage = "https://github.com/Darazaki/Spedread";
changelog = "https://github.com/Darazaki/Spedread/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/Darazaki/Spedread/releases/tag/v${finalAttrs.version}";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ thtrf ];
platforms = lib.platforms.linux;
+1 -1
View File
@@ -84,7 +84,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Forwards messages from the journal to other hosts over the network";
homepage = "https://github.com/systemd/systemd-netlogd";
changelog = "https://github.com/systemd/systemd-netlogd/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/systemd/systemd-netlogd/releases/tag/v${finalAttrs.version}";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ getchoo ];
mainProgram = "systemd-netlogd";