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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
635 B
Nix
Raw Normal View History

2021-09-03 20:46:02 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "metabigor";
2022-07-28 23:58:54 +00:00
version = "1.12.1";
2021-09-03 20:46:02 +00:00
src = fetchFromGitHub {
owner = "j3ssie";
repo = pname;
rev = "v${version}";
2022-07-28 23:58:54 +00:00
sha256 = "sha256-T1P+jAAsKObKRaoxH8c/DMEfXtmSrvnDd5Y3ocKcCSc=";
2021-09-03 20:46:02 +00:00
};
2022-07-28 23:58:54 +00:00
vendorSha256 = "sha256-V+72l2TvhEWgDg7kvn5OOjYcyEgWGLgTGnt58Bu+AEQ=";
2021-09-03 20:46:02 +00: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 ];
};
}