mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
commit
76bfd4ef49
2 changed files with 33 additions and 0 deletions
31
pkgs/tools/security/goblob/default.nix
Normal file
31
pkgs/tools/security/goblob/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -15609,6 +15609,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
goblob = callPackage ../tools/security/goblob { };
|
||||||
|
|
||||||
gogetdoc = callPackage ../development/tools/gogetdoc { };
|
gogetdoc = callPackage ../development/tools/gogetdoc { };
|
||||||
|
|
||||||
gox = callPackage ../development/tools/gox { };
|
gox = callPackage ../development/tools/gox { };
|
||||||
|
|
Loading…
Reference in a new issue