2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, which }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "crunch";
|
|
|
|
version = "3.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/crunch-wordlist/${pname}-${version}.tgz";
|
|
|
|
sha256 = "0mgy6ghjvzr26yrhj1bn73qzw6v9qsniskc5wqq1kk0hfhy6r3va";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ which ];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace '-g root -o root' "" \
|
|
|
|
--replace '-g wheel -o root' "" \
|
|
|
|
--replace 'sudo ' ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Wordlist generator";
|
|
|
|
homepage = "https://sourceforge.net/projects/crunch-wordlist/";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ lethalman lnl7 ];
|
|
|
|
};
|
|
|
|
}
|