3
0
Fork 0
forked from mirrors/nixpkgs

hashcat-utils: init at 1.9

This commit is contained in:
Tristan Helmich (omniIT) 2019-05-26 20:20:06 +00:00
parent 6e46d0b72a
commit c5be0e5f05
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 { };