mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
hashcat-utils: init at 1.9
This commit is contained in:
parent
6e46d0b72a
commit
c5be0e5f05
30
pkgs/tools/security/hashcat-utils/default.nix
Normal file
30
pkgs/tools/security/hashcat-utils/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user