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

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

36 lines
795 B
Nix
Raw Normal View History

2021-09-03 21:46:02 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "metabigor";
2024-03-02 20:40:24 +00:00
version = "2.0.0";
2021-09-03 21:46:02 +01:00
src = fetchFromGitHub {
owner = "j3ssie";
2024-03-03 22:24:19 +00:00
repo = "metabigor";
rev = "refs/tags/v${version}";
hash = "sha256-JFt9PC6VHWTYuaIWh2t2BiGFm1tGwZDdhhdp2xtmXSI=";
2021-09-03 21:46:02 +01:00
};
2024-03-02 20:40:24 +00:00
vendorHash = "sha256-PGUOTEFcOL1pG+itTp9ce1qW+1V6hts8jKpA0E8orDk=";
2021-09-03 21:46:02 +01:00
2024-03-03 22:24:19 +00:00
ldflags = [
"-w"
"-s"
];
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";
2024-03-03 22:24:19 +00:00
changelog = "https://github.com/j3ssie/metabigor/releases/tag/v${version}";
2021-09-03 21:46:02 +01:00
license = licenses.mit;
maintainers = with maintainers; [ fab ];
2024-03-03 22:24:19 +00:00
mainProgram = "metabigor";
2021-09-03 21:46:02 +01:00
};
}