github-release: 0.10.1-unstable-2024-06-25 -> 0.11.0 (#427519)

This commit is contained in:
Paul Meyer 2025-08-08 10:32:05 +02:00 committed by GitHub
commit 573e402f33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
};
}
})