metabigor: refactor
This commit is contained in:
parent
8727dcf55f
commit
2d3bbef3e5
1 changed files with 10 additions and 3 deletions
|
@ -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";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue