nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

cook-framework: use tag in src, add updater (#368237)

authored by

Gaétan Lepage and committed by
GitHub
c8dc84e6 b683cccb

+4 -1
+4 -1
pkgs/by-name/co/cook-framework/package.nix
··· 2 2 lib, 3 3 buildGoModule, 4 4 fetchFromGitHub, 5 + gitUpdater, 5 6 }: 6 7 7 8 buildGoModule rec { ··· 12 11 src = fetchFromGitHub { 13 12 owner = "glitchedgitz"; 14 13 repo = "cook"; 15 - rev = "refs/tags/v${version}"; 14 + tag = "v${version}"; 16 15 hash = "sha256-DK0kbvM11t64nGkrzThZgSruHTCHAPP374YPWmoM50g="; 17 16 }; 18 17 ··· 21 20 vendorHash = "sha256-VpNr06IiVKpMsJXzcKCuNfJ+T+zeA9dMBMp6jeCRgn8="; 22 21 23 22 doCheck = false; # uses network to fetch data sources 23 + 24 + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 24 25 25 26 meta = { 26 27 description = "Wordlist generator, splitter, merger, finder, saver for security researchers, bug bounty and hackers";