Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / by-name / se / seclists / package.nix
blobf452eb313f51040486710d2c85d6187e5199cf17
1 { lib
2 , fetchFromGitHub
3 , stdenvNoCC
4 }:
6 stdenvNoCC.mkDerivation {
7   pname = "seclists";
8   version = "2023.3";
10   src = fetchFromGitHub {
11     owner = "danielmiessler";
12     repo = "SecLists";
13     rev = "2023.3";
14     hash = "sha256-mJgCzp8iKzSWf4Tud5xDpnuY4aNJmnEo/hTcuGTaOWM=";
15   };
17   installPhase = ''
18     runHook preInstall
20     mkdir -p $out/share/wordlists/seclists
21     find . -maxdepth 1 -type d -regextype posix-extended -regex '^./[A-Z].*' -exec cp -R {} $out/share/wordlists/seclists \;
22     find $out/share/wordlists/seclists -name "*.md" -delete
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "A collection of multiple types of lists used during security assessments, collected in one place";
29     homepage = "https://github.com/danielmiessler/seclists";
30     license = licenses.mit;
31     maintainers = with maintainers; [ tochiaha janik pamplemousse ];
32   };