nixpkgs/pkgs/by-name/co/cook-framework/package.nix

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

33 lines
849 B
Nix
Raw Normal View History

2024-09-08 21:41:04 +00:00
{
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 ];
};
}