mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
2208511ab5
S3scanner is a security tool written in Go to scan for misconfigured S3 buckets across S3-compatible APIs. Project repository: https://github.com/sa7mon/S3Scanner
30 lines
773 B
Nix
30 lines
773 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "s3scanner";
|
|
version = "3.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sa7mon";
|
|
repo = "s3scanner";
|
|
rev = "v${version}";
|
|
hash = "sha256-f1r5ubH7iLKuuEhs4MPNY779FjyASW1xOXtMtXvF/CY=";
|
|
};
|
|
|
|
ldflags = [ "-s -w" ];
|
|
|
|
vendorHash = "sha256-3Y1izt6xLg7aNJNqIEXROxR3IGAIIeptHlnoYEcuLew=";
|
|
|
|
# Requires networking
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Scan for misconfigured S3 buckets across S3-compatible APIs";
|
|
downloadPage = "https://github.com/sa7mon/S3Scanner/releases/tag/v${version}";
|
|
homepage = "https://github.com/sa7mon/s3scanner";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ lavafroth ];
|
|
mainProgram = "s3scanner";
|
|
};
|
|
}
|