various: fix meta.changelog in orphaned packages, batch 1 (#514815)

This commit is contained in:
Colin
2026-06-07 23:39:09 +00:00
committed by GitHub
10 changed files with 13 additions and 10 deletions
@@ -12,7 +12,7 @@ vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: {
};
meta = {
changelog = "https://github.com/aws/aws-toolkit-vscode/releases/tag/amazonq%2Fv${finalAttrs.version}";
# changelog = "https://github.com/aws/aws-toolkit-vscode/releases/tag/amazonq%2Fv${finalAttrs.version}";
description = "Amazon Q, CodeCatalyst, Local Lambda debug, SAM/CFN syntax, ECS Terminal, AWS resources";
downloadPage = "https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.amazon-q-vscode";
homepage = "https://github.com/aws/aws-toolkit-vscode";
+1 -1
View File
@@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Opensource implementation of both encoder and decoder of the ITU G729 Annex A/B speech codec";
homepage = "https://linphone.org/technical-corner/bcg729";
changelog = "https://gitlab.linphone.org/BC/public/bcg729/raw/${finalAttrs.version}/NEWS";
changelog = "https://gitlab.linphone.org/BC/public/bcg729/blob/${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = lib.platforms.all;
+1 -1
View File
@@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: {
a Cherrytree document where you can easily find it.
'';
homepage = "https://www.giuspen.com/cherrytree";
changelog = "https://raw.githubusercontent.com/giuspen/cherrytree/${finalAttrs.version}/changelog.txt";
changelog = "https://raw.githubusercontent.com/giuspen/cherrytree/v${finalAttrs.version}/changelog.txt";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = lib.platforms.unix;
+1 -1
View File
@@ -35,7 +35,7 @@ buildGraalvmNativeImage (finalAttrs: {
meta = {
description = "Clojure Query: A Command-line Data Processor for JSON, YAML, EDN, XML and more";
homepage = "https://github.com/markus-wa/cq";
changelog = "https://github.com/markus-wa/cq/releases/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/markus-wa/cq/releases/tag/${finalAttrs.version}";
license = lib.licenses.epl20;
maintainers = [ ];
platforms = lib.platforms.unix;
@@ -45,7 +45,7 @@ buildDotnetModule rec {
description = "Tool to export Discord chat logs to a file";
homepage = "https://github.com/Tyrrrz/DiscordChatExporter";
license = lib.licenses.gpl3Plus;
changelog = "https://github.com/Tyrrrz/DiscordChatExporter/blob/${version}/Changelog.md";
changelog = "https://github.com/Tyrrrz/DiscordChatExporter/releases/tag/${version}";
maintainers = [ ];
platforms = lib.platforms.unix;
mainProgram = "discordchatexporter-cli";
@@ -39,7 +39,7 @@ buildDotnetModule rec {
description = "Tool to export Discord chat logs to a file (GUI version)";
homepage = "https://github.com/Tyrrrz/DiscordChatExporter";
license = lib.licenses.gpl3Plus;
changelog = "https://github.com/Tyrrrz/DiscordChatExporter/blob/${version}/Changelog.md";
changelog = "https://github.com/Tyrrrz/DiscordChatExporter/releases/tag/${version}";
maintainers = with lib.maintainers; [ willow ];
platforms = [ "x86_64-linux" ];
mainProgram = "discordchatexporter";
+1 -1
View File
@@ -61,7 +61,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
external notification services.
'';
homepage = "https://github.com/infothrill/python-dyndnsc";
changelog = "https://github.com/infothrill/python-dyndnsc/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/infothrill/python-dyndnsc/blob/${finalAttrs.src.rev}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = [ ];
mainProgram = "dyndnsc";
-1
View File
@@ -54,7 +54,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
description = "Small programming language for writing short programs processing textual data";
mainProgram = "frawk";
homepage = "https://github.com/ezrosent/frawk";
changelog = "https://github.com/ezrosent/frawk/releases/tag/v${finalAttrs.version}";
license = with lib.licenses; [
mit # or
asl20
+1 -1
View File
@@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
homepage = "http://www.mirbsd.org/mksh.htm";
changelog = "https://www.mirbsd.org/mksh.htm#clog";
changelog = "http://www.mirbsd.org/mksh.htm#clog";
description = "MirBSD Korn Shell";
mainProgram = "mksh";
longDescription = ''
+5 -1
View File
@@ -60,7 +60,11 @@ let
used as a fast and safe alternative to printf and IOStreams.
'';
homepage = "https://fmt.dev/";
changelog = "https://github.com/fmtlib/fmt/blob/${version}/ChangeLog.rst";
changelog =
let
ext = if lib.versionOlder version "10" then "rst" else "md";
in
"https://github.com/fmtlib/fmt/blob/${version}/ChangeLog.${ext}";
downloadPage = "https://github.com/fmtlib/fmt/";
maintainers = [ ];
license = lib.licenses.mit;