From d4ef54f8fa717c2e3a142dee19f12fda0f9883a7 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 22 Jul 2025 19:36:40 +0200 Subject: [PATCH] github-release: 0.10.1-unstable-2024-06-25 -> 0.11.0 Signed-off-by: Paul Meyer --- pkgs/by-name/gi/github-release/package.nix | 30 ++++++++++------------ 1 file changed, 14 insertions(+), 16 deletions(-) diff --git a/pkgs/by-name/gi/github-release/package.nix b/pkgs/by-name/gi/github-release/package.nix index 840ef1a579c9..006024294943 100644 --- a/pkgs/by-name/gi/github-release/package.nix +++ b/pkgs/by-name/gi/github-release/package.nix @@ -2,31 +2,31 @@ buildGoModule, fetchFromGitHub, lib, - testers, - github-release, + nix-update-script, + versionCheckHook, }: -buildGoModule rec { +buildGoModule (finalAttrs: { pname = "github-release"; - version = "0.10.1-unstable-2024-06-25"; + version = "0.11.0"; src = fetchFromGitHub { owner = "github-release"; repo = "github-release"; - rev = "d250e89a7bf00d54e823b169c3a4722a55ac67b0"; - hash = "sha256-QDImy9VNJ3hfGVCpMoJ72Za3CiM3SVNH1D9RFHVM+4I="; + tag = "v${finalAttrs.version}"; + hash = "sha256-foQZsYfYM/Cqtck+xfdup6WUeoBiqBTP7USCyPMv5q0="; }; vendorHash = null; ldflags = [ "-s" ]; - passthru.tests.version = testers.testVersion { - package = github-release; - version = "v${version}"; - }; + doInstallCheck = true; + nativeInstallCheckInputs = [ versionCheckHook ]; - meta = with lib; { + passthru.updateScript = nix-update-script { }; + + meta = { description = "Commandline app to create and edit releases on Github (and upload artifacts)"; mainProgram = "github-release"; longDescription = '' @@ -34,13 +34,11 @@ buildGoModule rec { delete releases of your projects on Github. In addition it allows you to attach files to those releases. ''; - - license = licenses.mit; + license = lib.licenses.mit; homepage = "https://github.com/github-release/github-release"; - maintainers = with maintainers; [ + maintainers = with lib.maintainers; [ ardumont j03 ]; - platforms = with platforms; unix; }; -} +})