Unverified Commit e406db01 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

act3: init at 2.0.0 (#508530)

parents 71e0e443 f08de297
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
  nix-update-script,
}:

buildGoModule (finalAttrs: {
  pname = "act3";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "dhth";
    repo = "act3";
    tag = "v${finalAttrs.version}";
    hash = "sha256-GE9f4hm+R4G4NCqdPN6h5MTZqMVLkrdMnc20bOZGcu4=";
  };

  vendorHash = "sha256-+WSWlmxQTryLrpeloYdupyMibsgFYpjSuDvW+if3IHE=";

  __structuredAttrs = true;

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

  meta = {
    description = "Glance at the last 3 runs of your GitHub Actions workflows";
    homepage = "https://github.com/dhth/act3";
    license = lib.licenses.mit;
    mainProgram = "act3";
    maintainers = with lib.maintainers; [ phanirithvij ];
    platforms = lib.platforms.unix;
  };
})