nixpkgs/pkgs/tools/security/crunch/default.nix

31 lines
752 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, which }:
2016-08-21 16:58:56 +00:00
2021-02-03 10:08:31 +00:00
stdenv.mkDerivation rec {
pname = "crunch";
2016-08-21 16:58:56 +00:00
version = "3.6";
src = fetchurl {
url = "mirror://sourceforge/crunch-wordlist/${pname}-${version}.tgz";
2016-08-21 16:58:56 +00:00
sha256 = "0mgy6ghjvzr26yrhj1bn73qzw6v9qsniskc5wqq1kk0hfhy6r3va";
};
buildInputs = [ which ];
preBuild = ''
2017-03-08 23:46:13 +00:00
substituteInPlace Makefile \
--replace '-g root -o root' "" \
--replace '-g wheel -o root' "" \
--replace 'sudo ' ""
2016-08-21 16:58:56 +00:00
'';
makeFlags = [ "PREFIX=$(out)" ];
2016-08-21 16:58:56 +00:00
meta = with lib; {
2016-08-21 16:58:56 +00:00
description = "Wordlist generator";
homepage = "https://sourceforge.net/projects/crunch-wordlist/";
2017-03-08 23:46:13 +00:00
platforms = platforms.unix;
2021-02-03 10:08:31 +00:00
license = with licenses; [ gpl2Only ];
maintainers = with maintainers; [ lnl7 ];
2016-08-21 16:58:56 +00:00
};
}