2018-11-17 20:10:52 +00:00
|
|
|
{ stdenv, fetchurl, makeWrapper, opencl-headers, ocl-icd, xxHash }:
|
2014-03-31 16:56:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "hashcat-${version}";
|
2018-11-17 20:10:52 +00:00
|
|
|
version = "5.0.0";
|
2014-03-31 16:56:02 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-01 15:05:10 +00:00
|
|
|
url = "https://hashcat.net/files/hashcat-${version}.tar.gz";
|
2018-11-17 20:10:52 +00:00
|
|
|
sha256 = "13xh1lmzdppvx8wr8blqhdr8vpa24j099kz2xzb9pcnqy26dk4kh";
|
2014-03-31 16:56:02 +01:00
|
|
|
};
|
2018-11-17 20:10:52 +00:00
|
|
|
patches = [ ./use-installed-xxhash.patch ];
|
2014-03-31 16:56:02 +01:00
|
|
|
|
2017-11-01 15:05:10 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2018-11-17 20:10:52 +00:00
|
|
|
buildInputs = [ opencl-headers xxHash ];
|
2014-03-31 16:56:02 +01:00
|
|
|
|
2017-11-01 15:05:10 +00:00
|
|
|
makeFlags = [
|
2019-01-08 02:51:22 +00:00
|
|
|
"PREFIX=${placeholder "out"}"
|
2017-11-01 15:05:10 +00:00
|
|
|
"OPENCL_HEADERS_KHRONOS=${opencl-headers}/include"
|
|
|
|
"COMPTIME=1337"
|
|
|
|
"VERSION_TAG=${version}"
|
|
|
|
];
|
2014-03-31 16:56:02 +01:00
|
|
|
|
2017-11-01 15:05:10 +00:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/hashcat --prefix LD_LIBRARY_PATH : ${ocl-icd}/lib
|
2014-03-31 16:56:02 +01:00
|
|
|
'';
|
|
|
|
|
2017-11-01 15:05:10 +00:00
|
|
|
meta = with stdenv.lib; {
|
2014-03-31 16:56:02 +01:00
|
|
|
description = "Fast password cracker";
|
2017-11-01 15:05:10 +00:00
|
|
|
homepage = https://hashcat.net/hashcat/;
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ kierdavis zimbatm ];
|
2014-03-31 16:56:02 +01:00
|
|
|
};
|
|
|
|
}
|