summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-07-20 23:37:02 -0700
committerGitHub <noreply@github.com>2021-07-21 08:37:02 +0200
commit4a338e3317cfeab9c0e4281d6f319c44435ec766 (patch)
treef8cbce9a8c223f459630da8902054705b9948276 /pkgs/tools
parentb8297c00c97f91c163b004c686948cfb0eb80d11 (diff)
downloadnixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.tar
nixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.tar.gz
nixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.tar.bz2
nixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.tar.lz
nixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.tar.xz
nixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.tar.zst
nixpkgs-4a338e3317cfeab9c0e4281d6f319c44435ec766.zip
hashcat: 6.2.2 -> 6.2.3 (#130870)
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/hashcat/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/hashcat/default.nix b/pkgs/tools/security/hashcat/default.nix
index 3f38493d752..273e2837e06 100644
--- a/pkgs/tools/security/hashcat/default.nix
+++ b/pkgs/tools/security/hashcat/default.nix
@@ -8,11 +8,11 @@
 
 stdenv.mkDerivation rec {
   pname   = "hashcat";
-  version = "6.2.2";
+  version = "6.2.3";
 
   src = fetchurl {
     url = "https://hashcat.net/files/hashcat-${version}.tar.gz";
-    sha256 = "0xbs3i5g2w8h5031jwgm13algs3f721k12fghnwfzi05fmzw8d0f";
+    sha256 = "sha256-wL4cZpPuHzXHvvH3m/njCpVPcX70LQDjd4eq7/MnHlE=";
   };
 
   nativeBuildInputs = [ makeWrapper ];