~ruther/guix-local

19d970fa9210624a3dead32c4ff070479c548d2d — Guillaume Le Vaillant 2 years ago 37d727c
gnu: bruteforce-luks: Update to 1.4.1.

* gnu/packages/password-utils.scm (bruteforce-luks): Update to 1.4.1.
  [source]: Switch to git-fetch method.
  [native-inputs]: Remove lzip, add autoconf and automake.

Change-Id: Iea339deb9d4331cb0813468fbcd84b7a5112e6bd
1 files changed, 8 insertions(+), 9 deletions(-)

M gnu/packages/password-utils.scm
M gnu/packages/password-utils.scm => gnu/packages/password-utils.scm +8 -9
@@ 1461,20 1461,19 @@ HTTP.")
(define-public bruteforce-luks
  (package
    (name "bruteforce-luks")
    (version "1.4.0")
    (version "1.4.1")
    (source
     (origin
       (method url-fetch)
       (uri (string-append "https://github.com/glv2/bruteforce-luks/releases/download/"
                           version
                           "/bruteforce-luks-"
                           version
                           ".tar.lz"))
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/glv2/bruteforce-luks")
             (commit version)))
       (file-name (git-file-name name version))
       (sha256
        (base32 "0yawrlbbklhmvwr99wm7li3r0d5kxvpkwf33a12rji7z0ya5p340"))))
        (base32 "1fhvm7ykqv2anny6zavd4iwh6gq5rp1r27p3zhn78sd3y34xhkmp"))))
    (build-system gnu-build-system)
    (native-inputs
     (list lzip))
     (list autoconf automake))
    (inputs
     (list cryptsetup))
    (synopsis "LUKS encrypted volume cracker")