mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
33 lines
849 B
Nix
33 lines
849 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|