forgejo-runner: 10.0.1 -> 11.0.0

changelog: https://code.forgejo.org/forgejo/runner/releases/tag/v11.0.0
This commit is contained in:
Chris Moultrie
2025-09-08 09:00:49 -04:00
parent b791e74ea9
commit 5d00faa52a
2 changed files with 7 additions and 5 deletions
+2
View File
@@ -162,6 +162,8 @@
- `meta.mainProgram`: Changing this `meta` entry can lead to a package rebuild due to being used to determine the `NIX_MAIN_PROGRAM` environment variable.
- `forgejo-runner`: The upgrade to version 11 brings a license change from MIT to GPLv3-or-later.
- `lisp-modules` were brought in sync with the [June 2025 Quicklisp release](http://blog.quicklisp.org/2025/07/june-2025-quicklisp-dist-now-available.html).
- `ffmpeg_8`, `ffmpeg_8-headless`, and `ffmpeg_8-full` have been added. The default version of FFmpeg remains ffmpeg_7 for now, though this may change before release.
+5 -5
View File
@@ -41,17 +41,17 @@ let
in
buildGoModule rec {
pname = "forgejo-runner";
version = "10.0.1";
version = "11.0.0";
src = fetchFromGitea {
domain = "code.forgejo.org";
owner = "forgejo";
repo = "runner";
rev = "v${version}";
hash = "sha256-p9inpt3v5KnKWdkkr2viL3KxN2fawesjaziyl2QsYko=";
hash = "sha256-R4YQHU1ZYLO45hLJPgXb6HUiQ8nuC6oyN1blPJ1hUs8=";
};
vendorHash = "sha256-/LoNiNgUCFDW/nlqiDXvr2m0UwFNtyOewGmd1F35YEg=";
vendorHash = "sha256-IWlovmpnnQlP4J/eRkiOgmGyZR6uvBwfRzwW3Ui9dWE=";
# See upstream Makefile
# https://code.forgejo.org/forgejo/runner/src/branch/main/Makefile
@@ -63,7 +63,7 @@ buildGoModule rec {
ldflags = [
"-s"
"-w"
"-X code.forgejo.org/forgejo/runner/v9/internal/pkg/ver.version=${src.rev}"
"-X code.forgejo.org/forgejo/runner/v11/internal/pkg/ver.version=${src.rev}"
];
checkFlags = [
@@ -94,7 +94,7 @@ buildGoModule rec {
description = "Runner for Forgejo based on act";
homepage = "https://code.forgejo.org/forgejo/runner";
changelog = "https://code.forgejo.org/forgejo/runner/releases/tag/${src.rev}";
license = licenses.mit;
license = licenses.gpl3Plus;
maintainers = with maintainers; [
adamcstephens
emilylange