mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
hashrat: init at 1.15
This commit is contained in:
parent
498ebaf86d
commit
badc84b69e
32
pkgs/tools/security/hashrat/default.nix
Normal file
32
pkgs/tools/security/hashrat/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "hashrat";
|
||||||
|
version = "1.15";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "ColumPaget";
|
||||||
|
repo = "Hashrat";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-+3IPCJS++7CE0ZrJb62LCRrAn2J4uCF3a1oOzDoOW0w=";
|
||||||
|
};
|
||||||
|
|
||||||
|
configureFlags = [ "--enable-xattr" ];
|
||||||
|
|
||||||
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Command-line hash-generation utility";
|
||||||
|
longDescription = ''
|
||||||
|
Hashing tool supporting md5,sha1,sha256,sha512,whirlpool,jh and hmac versions of these.
|
||||||
|
Includes recursive file hashing and other features.
|
||||||
|
'';
|
||||||
|
homepage = "http://www.cjpaget.co.uk/Code/Hashrat";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ zendo ];
|
||||||
|
};
|
||||||
|
}
|
@ -7624,6 +7624,8 @@ with pkgs;
|
|||||||
|
|
||||||
hashcat-utils = callPackage ../tools/security/hashcat-utils { };
|
hashcat-utils = callPackage ../tools/security/hashcat-utils { };
|
||||||
|
|
||||||
|
hashrat = callPackage ../tools/security/hashrat { };
|
||||||
|
|
||||||
hash_extender = callPackage ../tools/security/hash_extender {
|
hash_extender = callPackage ../tools/security/hash_extender {
|
||||||
openssl = openssl_1_1;
|
openssl = openssl_1_1;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user