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
This commit is contained in:
Guillaume Le Vaillant 2024-03-01 13:51:34 +01:00
parent 37d727c60e
commit 19d970fa92
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 8 additions and 9 deletions

View File

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