mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
cook-framework: init at 2.2.1 (#340605)
This commit is contained in:
commit
b9381c0084
32
pkgs/by-name/co/cook-framework/package.nix
Normal file
32
pkgs/by-name/co/cook-framework/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue