Merge pull request #62098 from fadenb/hashcat-utils_1.9_init

hashcat-utils: init at 1.9
This commit is contained in:
Renaud 2019-05-27 14:17:36 +02:00 committed by GitHub
commit f0df3f13bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "hashcat-utils";
version = "1.9";
src = fetchFromGitHub {
owner = "hashcat";
repo = pname;
rev = "v${version}";
sha256 = "0wgc6wv7i6cs95rgzzx3zqm14xxbjyajvcqylz8w97d8kk4x4wjr";
};
sourceRoot = "source/src";
installPhase = ''
runHook preInstall
install -Dm0555 *.bin -t $out/bin
install -Dm0555 *.pl -t $out/bin
runHook postInstall
'';
meta = with stdenv.lib; {
description = "Small utilities that are useful in advanced password cracking";
homepage = https://github.com/hashcat/hashcat-utils;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ fadenb ];
};
}

View File

@ -3503,6 +3503,8 @@ in
hashcat = callPackage ../tools/security/hashcat { };
hashcat-utils = callPackage ../tools/security/hashcat-utils { };
hash_extender = callPackage ../tools/security/hash_extender { };
hash-slinger = callPackage ../tools/security/hash-slinger { };