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:
@@ -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;
|
||||
};
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user