guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: gnu: hashcat-utils: Update to 1.9.


From: Tobias Geerinckx-Rice
Subject: 06/06: gnu: hashcat-utils: Update to 1.9.
Date: Sat, 27 Oct 2018 21:39:56 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 2b9b4b1fe368fb1745c4150adbb8754948326c95
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Sun Oct 28 02:35:09 2018 +0200

    gnu: hashcat-utils: Update to 1.9.
    
    And trim lines to 80 characters.
    
    * gnu/packages/password-utils.scm (hashcat-utils): Update to 1.9.
    [source]: Parametrise.
---
 gnu/packages/password-utils.scm | 26 +++++++++++++++-----------
 1 file changed, 15 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index e09bbea..357ef86 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -735,15 +735,15 @@ password cracking.")
 (define-public hashcat-utils
   (package
     (name "hashcat-utils")
-    (version "1.8")
+    (version "1.9")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append 
"https://github.com/hashcat/hashcat-utils/releases/download/v";
-                           version "/hashcat-utils-1.8.7z"))
+       (uri (string-append "https://github.com/hashcat/hashcat-utils/releases/";
+                           "download/v" version "/"
+                           "hashcat-utils-" version ".7z"))
        (sha256
-        (base32
-         "1x80rngjz7gkhwplhw1iqr0wzb6hjkrjfld2kz9kmgp5dr9nys1p"))))
+        (base32 "0kq555kb338691qd7zjmi8vhq4km3apnsl2w63zh0igwzcjx6lx1"))))
     (native-inputs
      `(("p7zip" ,p7zip)))
     (inputs
@@ -767,12 +767,16 @@ password cracking.")
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((out (string-append (assoc-ref outputs "out") "/bin")))
                (mkdir-p out)
-               (for-each (lambda (file)
-                           (copy-file file (string-append out "/" (basename 
file ".bin"))))
-                         (find-files "." "\\.bin$"))
-               (for-each (lambda (file)
-                           (copy-file file (string-append out "/" (basename 
file ".pl"))))
-                         (find-files "../bin" "\\.pl$"))
+               (for-each
+                (lambda (file)
+                  (copy-file file (string-append out "/"
+                                                 (basename file ".bin"))))
+                (find-files "." "\\.bin$"))
+               (for-each
+                (lambda (file)
+                  (copy-file file (string-append out "/"
+                                                 (basename file ".pl"))))
+                (find-files "../bin" "\\.pl$"))
                #t))))))
     (home-page "https://github.com/hashcat/hashcat-utils/";)
     (synopsis "Small utilities that are useful in advanced password cracking")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]