nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #236753 from fabaff/goblob

goblob: init at 1.2.2

authored by

figsoda and committed by
GitHub
76bfd4ef cf372e89

+33
+31
pkgs/tools/security/goblob/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "goblob"; 8 + version = "1.2.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "Macmod"; 12 + repo = "goblob"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-FnSlfLi40VwDyQY77PvhV7EbhUDs1uGx0VsgP8HgKTw="; 15 + }; 16 + 17 + vendorHash = null; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "Enumeration tool for publicly exposed Azure Storage blobs"; 26 + homepage = "https://github.com/Macmod/goblob"; 27 + changelog = "https://github.com/Macmod/goblob/releases/tag/v${version}"; 28 + license = licenses.mit; 29 + maintainers = with maintainers; [ fab ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 15609 15609 inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration; 15610 15610 }; 15611 15611 15612 + goblob = callPackage ../tools/security/goblob { }; 15613 + 15612 15614 gogetdoc = callPackage ../development/tools/gogetdoc { }; 15613 15615 15614 15616 gox = callPackage ../development/tools/gox { };