Merge pull request #301383 from emilylange/forgejo-runner

forgejo-runner: rename from forgejo-actions-runner, fix `meta.changelog`, 3.3.0 -> 3.4.1
This commit is contained in:
Emily 2024-04-10 17:43:41 +02:00 committed by GitHub
commit d477ca36fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 10 deletions

View File

@ -2,22 +2,22 @@
, buildGoModule
, fetchFromGitea
, testers
, forgejo-actions-runner
, forgejo-runner
}:
buildGoModule rec {
pname = "forgejo-actions-runner";
version = "3.3.0";
pname = "forgejo-runner";
version = "3.4.1";
src = fetchFromGitea {
domain = "code.forgejo.org";
owner = "forgejo";
repo = "runner";
rev = "v${version}";
hash = "sha256-ZpsHytsIp+ZW4DI7X9MmI7nZRnXVHvx905YdZGS6WMY=";
hash = "sha256-c8heIHt+EJ6LnZT4/6TTWd7v85VRHjH72bdje12un4M=";
};
vendorHash = "sha256-5GnGXpMy1D7KpVAVroX07Vw5QKYYtwdIhQsk23WCLgc=";
vendorHash = "sha256-FCCQZdAYRtJR3DGQIEvUzv+1kqvxVTGkwJwZSohq28s=";
ldflags = [
"-s"
@ -28,16 +28,16 @@ buildGoModule rec {
doCheck = false; # Test try to lookup code.forgejo.org.
passthru.tests.version = testers.testVersion {
package = forgejo-actions-runner;
package = forgejo-runner;
version = src.rev;
};
meta = with lib; {
description = "A runner for Forgejo based on act";
homepage = "https://code.forgejo.org/forgejo/runner";
changelog = "https://gitea.com/gitea/act_runner/releases/tag/${src.rev}";
changelog = "https://code.forgejo.org/forgejo/runner/src/tag/${src.rev}/RELEASE-NOTES.md";
license = licenses.mit;
maintainers = with maintainers; [ kranzes ];
maintainers = with maintainers; [ kranzes emilylange ];
mainProgram = "act_runner";
};
}

View File

@ -358,6 +358,7 @@ mapAliases ({
flutter2 = throw "flutter2 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03
flutter37 = throw "flutter37 has been removed because it isn't updated anymore, and no packages in nixpkgs use it. If you still need it, use flutter.mkFlutter to get a custom version"; # Added 2023-07-03
foldingathome = fahclient; # Added 2020-09-03
forgejo-actions-runner = forgejo-runner; # Added 2024-04-04
foundationdb51 = throw "foundationdb51 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06
foundationdb52 = throw "foundationdb52 is no longer maintained, use foundationdb71 instead"; # added 2023-06-06

View File

@ -8490,8 +8490,6 @@ with pkgs;
forgejo = callPackage ../applications/version-management/forgejo { };
forgejo-actions-runner = callPackage ../development/tools/continuous-integration/forgejo-actions-runner { };
gokart = callPackage ../development/tools/gokart { };
gl2ps = callPackage ../development/libraries/gl2ps { };