Unverified Commit 6634004a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

octoscan: init at 0-unstable-2024-08-25 (#341841)

parents 5c0f0ac0 311dbf93
Loading
Loading
Loading
Loading
+33 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "octoscan";
  version = "0-unstable-2024-08-25";

  src = fetchFromGitHub {
    owner = "synacktiv";
    repo = "octoscan";
    # https://github.com/synacktiv/octoscan/issues/7
    rev = "69f0761fe4d31f7fe4050fde5fd807364155fde4";
    hash = "sha256-2aCjqjBDXqGbu94o22JRpJ5nUv8U46JGRcrBJCINflQ=";
  };

  vendorHash = "sha256-9IT8qTFzn8otWGTBP7ODcT8iBckIJ/3+jkbF1dq6aDw=";

  ldflags = [
    "-s"
    "-w"
  ];

  meta = {
    description = "Static vulnerability scanner for GitHub action workflows";
    homepage = "https://github.com/synacktiv/octoscan";
    license = lib.licenses.gpl3Only;
    maintainers = with lib.maintainers; [ fab ];
    mainProgram = "octoscan";
  };
}