Unverified Commit 573e402f authored by Paul Meyer's avatar Paul Meyer Committed by GitHub
Browse files

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

parents dbd2ed78 d4ef54f8
Loading
Loading
Loading
Loading
+14 −16
Original line number Diff line number Diff line
@@ -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 ];

  passthru.updateScript = nix-update-script { };

  meta = with lib; {
  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;
  };
}
})