nixpkgs/pkgs/tools/security/metabigor/default.nix

29 lines
633 B
Nix
Raw Normal View History

2021-09-03 21:46:02 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "metabigor";
2021-09-23 04:53:38 +01:00
version = "1.10";
2021-09-03 21:46:02 +01:00
src = fetchFromGitHub {
owner = "j3ssie";
repo = pname;
rev = "v${version}";
2021-09-23 04:53:38 +01:00
sha256 = "sha256-ADpnSsGZQbXaSGidPmxwkQOl+P8ZupqRaDUh7t+XoDw=";
2021-09-03 21:46:02 +01:00
};
2021-09-23 04:53:38 +01:00
vendorSha256 = "sha256-la7bgeimycltFB7l6vNBYdlBIv4kD+HX7f2mo+eZhXM=";
2021-09-03 21:46:02 +01:00
# 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 ];
};
}