cook-framework: init at 2.2.1

This commit is contained in:
TomaSajt 2024-09-08 23:41:04 +02:00
parent ca35a74bfb
commit 4a208d7c65
No known key found for this signature in database
GPG Key ID: F011163C050122A1

View File

@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "cook-framework";
version = "2.2.1";
src = fetchFromGitHub {
owner = "glitchedgitz";
repo = "cook";
rev = "refs/tags/v${version}";
hash = "sha256-DK0kbvM11t64nGkrzThZgSruHTCHAPP374YPWmoM50g=";
};
sourceRoot = "${src.name}/v2";
vendorHash = "sha256-VpNr06IiVKpMsJXzcKCuNfJ+T+zeA9dMBMp6jeCRgn8=";
doCheck = false; # uses network to fetch data sources
meta = {
description = "Wordlist generator, splitter, merger, finder, saver for security researchers, bug bounty and hackers";
homepage = "https://github.com/glitchedgitz/cook";
changelog = "https://github.com/glitchedgitz/cook/releases/tag/v${version}";
license = lib.licenses.mit;
mainProgram = "cook";
maintainers = with lib.maintainers; [ tomasajt ];
};
}