nixpkgs/pkgs/tools/security/goblob/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

33 lines
678 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "goblob";
version = "1.2.2";
src = fetchFromGitHub {
owner = "Macmod";
repo = "goblob";
rev = "refs/tags/v${version}";
hash = "sha256-FnSlfLi40VwDyQY77PvhV7EbhUDs1uGx0VsgP8HgKTw=";
};
vendorHash = null;
ldflags = [
"-s"
"-w"
];
meta = with lib; {
description = "Enumeration tool for publicly exposed Azure Storage blobs";
mainProgram = "goblob";
homepage = "https://github.com/Macmod/goblob";
changelog = "https://github.com/Macmod/goblob/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}