mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
metabigor: init at 1.9
This commit is contained in:
parent
e4f82b3722
commit
e3e971fc75
28
pkgs/tools/security/metabigor/default.nix
Normal file
28
pkgs/tools/security/metabigor/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "metabigor";
|
||||
version = "1.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "j3ssie";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0gjqjz35m9hj4dpch9akkjs895qrp8fwhcsn474lz6z2q6sb65pr";
|
||||
};
|
||||
|
||||
vendorSha256 = "071s3vlz0maz1597l8y899758g24vh58s4kam4q2mxkzfynzs0cr";
|
||||
|
||||
# Disabled for now as there are some failures ("undefined:")
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool to perform OSINT tasks";
|
||||
homepage = "https://github.com/j3ssie/metabigor";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -7271,6 +7271,8 @@ with pkgs;
|
|||
|
||||
mscgen = callPackage ../tools/graphics/mscgen { };
|
||||
|
||||
metabigor = callPackage ../tools/security/metabigor { };
|
||||
|
||||
metasploit = callPackage ../tools/security/metasploit { };
|
||||
|
||||
ms-sys = callPackage ../tools/misc/ms-sys { };
|
||||
|
|
Loading…
Reference in a new issue