treewide changelogs fixes (#514355)

This commit is contained in:
Doron Behar
2026-04-28 16:33:12 +00:00
committed by GitHub
5 changed files with 18 additions and 9 deletions
+5 -5
View File
@@ -19,14 +19,14 @@
stdenv.mkDerivation (finalAttrs: {
pname = "castget";
# Using unstable version since it doesn't require `ronn`, see:
# https://github.com/mlj/castget/commit/e97b179227b4fc7e2e2bc5a373933624c0467daa
version = "2.0.1-unstable-2025-01-25";
# https://github.com/mlj/castget/commit/218734296e2efc53071e0dbd3c4d59930b571aae
version = "2.0.1-unstable-2026-02-04";
src = fetchFromGitHub {
owner = "mlj";
repo = "castget";
rev = "e97b179227b4fc7e2e2bc5a373933624c0467daa";
hash = "sha256-3t/N8JO36wjHuzIdWNstRWphC/ZR6KkZX0l9yKarS7c=";
rev = "218734296e2efc53071e0dbd3c4d59930b571aae";
hash = "sha256-GEfsGOTBkorPWLGP3eNbuiGFwDUgb4Gu6ykyS3/RNOg=";
};
# without this, the build fails because of an encoding issue with the manual page.
@@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: {
primarily intended for automatic, unattended downloading of podcasts.
'';
homepage = "https://castget.johndal.com/";
changelog = "https://github.com/mlj/castget/blob/${finalAttrs.version}/CHANGES.md";
changelog = "https://github.com/mlj/castget/blob/${finalAttrs.src.rev}/CHANGES.md";
maintainers = with lib.maintainers; [ doronbehar ];
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
-1
View File
@@ -21,7 +21,6 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Free Unicode plain-text editor for Unix-like systems";
homepage = "https://www.yudit.org/";
changelog = "https://www.yudit.org/download/CHANGELOG.TXT";
mainProgram = "yudit";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ doronbehar ];
@@ -67,7 +67,7 @@ buildPythonPackage rec {
meta = {
homepage = "https://github.com/crate/crate-python";
description = "Python client library for CrateDB";
changelog = "https://github.com/crate/crate-python/blob/${version}/CHANGES.txt";
changelog = "https://github.com/crate/crate-python/blob/${version}/CHANGES.rst";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ doronbehar ];
};
@@ -113,7 +113,12 @@ buildPythonPackage rec {
meta = {
description = "Python library generating graphical user interfaces for easy dataset editing and display";
homepage = "https://github.com/PlotPyStack/guidata";
changelog = "https://github.com/PlotPyStack/guidata/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/PlotPyStack/guidata/blob/master/doc/release_notes/release_${lib.versions.major version}.${
lib.pipe version [
lib.versions.minor
(lib.fixedWidthString 2 "0")
]
}.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
};
@@ -117,7 +117,12 @@ buildPythonPackage rec {
meta = {
description = "Curve and image plotting tools for Python/Qt applications";
homepage = "https://github.com/PlotPyStack/PlotPy";
changelog = "https://github.com/PlotPyStack/PlotPy/blob/${src.tag}/CHANGELOG.md";
changelog = "https://github.com/PlotPyStack/PlotPy/blob/master/doc/release_notes/release_${lib.versions.major version}.${
lib.pipe version [
lib.versions.minor
(lib.fixedWidthString 2 "0")
]
}.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ doronbehar ];
};