Merge pull request #293106 from fabaff/metabigor-refactor

metabigor: refactor
This commit is contained in:
Fabian Affolter 2024-03-04 08:21:46 +01:00 committed by GitHub
commit 89b71b08bf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,20 +9,27 @@ buildGoModule rec {
src = fetchFromGitHub {
owner = "j3ssie";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JFt9PC6VHWTYuaIWh2t2BiGFm1tGwZDdhhdp2xtmXSI=";
repo = "metabigor";
rev = "refs/tags/v${version}";
hash = "sha256-JFt9PC6VHWTYuaIWh2t2BiGFm1tGwZDdhhdp2xtmXSI=";
};
vendorHash = "sha256-PGUOTEFcOL1pG+itTp9ce1qW+1V6hts8jKpA0E8orDk=";
ldflags = [
"-w"
"-s"
];
# 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";
changelog = "https://github.com/j3ssie/metabigor/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "metabigor";
};
}