mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: hashcat: Remove nonfree unrar bundled dependency.
Fixes: guix/guix#2784. * gnu/packages/password-utils.scm (hashcat)[source]: Remove "deps/unrar" from compiled directories. [arguments]<#:make-flags>: Add "ENABLE_UNRAR=0". Signed-off-by: Andreas Enge <andreas@enge.fr>
This commit is contained in:
parent
1aa6da547d
commit
eb893dbdd5
1 changed files with 3 additions and 1 deletions
|
@ -1684,7 +1684,8 @@ your online accounts makes it necessary.")
|
|||
(snippet
|
||||
;; TODO: Unbundle LZMA-SDK as well
|
||||
#~(for-each delete-file-recursively
|
||||
'("deps/zlib" "deps/xxHash" "deps/OpenCL-Headers")))))
|
||||
'("deps/unrar" ;; nonfree license
|
||||
"deps/zlib" "deps/xxHash" "deps/OpenCL-Headers")))))
|
||||
(inputs (list minizip opencl-headers xxhash zlib))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
|
@ -1692,6 +1693,7 @@ your online accounts makes it necessary.")
|
|||
#:make-flags #~(list (string-append "PREFIX=" #$output)
|
||||
(string-append "AR=" #$(ar-for-target))
|
||||
(string-append "CC=" #$(cc-for-target))
|
||||
(string-append "ENABLE_UNRAR=0")
|
||||
(string-append "USE_SYSTEM_ZLIB=1")
|
||||
(string-append "USE_SYSTEM_OPENCL=1")
|
||||
(string-append "USE_SYSTEM_XXHASH=1"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue