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

41 lines
895 B
Nix
Raw Normal View History

{ lib, stdenv
2020-06-19 10:36:08 +00:00
, fetchurl
, makeWrapper
, opencl-headers
, ocl-icd
, xxHash
}:
stdenv.mkDerivation rec {
2019-05-28 08:51:43 +00:00
pname = "hashcat";
2020-08-01 15:37:09 +00:00
version = "6.1.1";
src = fetchurl {
url = "https://hashcat.net/files/hashcat-${version}.tar.gz";
2020-08-01 15:37:09 +00:00
sha256 = "104z63m7lqbb0sdrxhf9yi15l4a9zwf9m6zs9dbb3gf0nfxl1h9r";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ opencl-headers xxHash ];
makeFlags = [
2019-01-08 02:51:22 +00:00
"PREFIX=${placeholder "out"}"
"COMPTIME=1337"
"VERSION_TAG=${version}"
2019-05-28 08:51:43 +00:00
"USE_SYSTEM_OPENCL=1"
"USE_SYSTEM_XXHASH=1"
];
postFixup = ''
wrapProgram $out/bin/hashcat --prefix LD_LIBRARY_PATH : ${ocl-icd}/lib
'';
meta = with lib; {
description = "Fast password cracker";
homepage = "https://hashcat.net/hashcat/";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kierdavis zimbatm ];
};
}