3
0
Fork 0
forked from mirrors/nixpkgs

goblob: init at 1.2.2

This commit is contained in:
Fabian Affolter 2023-06-09 00:28:18 +02:00
parent 4c52672699
commit 7d02d8d3c9
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ 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";
homepage = "https://github.com/Macmod/goblob";
changelog = "https://github.com/Macmod/goblob/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -15609,6 +15609,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
};
goblob = callPackage ../tools/security/goblob { };
gogetdoc = callPackage ../development/tools/gogetdoc { };
gox = callPackage ../development/tools/gox { };