mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: john-the-ripper-jumbo: Use Python 3.
* gnu/packages/password-utils.scm (john-the-ripper-jumbot): [inputs]: Use new style and replace python-2 by python-wrapper. [phases]{install}: Delete trailing #t.
This commit is contained in:
parent
098372a81e
commit
ec822034d9
1 changed files with 9 additions and 9 deletions
|
@ -33,6 +33,7 @@
|
||||||
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
|
||||||
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
;;; Copyright © 2020 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
||||||
;;; Copyright © 2021 David Dashyan <mail@davie.li>
|
;;; Copyright © 2021 David Dashyan <mail@davie.li>
|
||||||
|
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -951,13 +952,13 @@ (define-public john-the-ripper-jumbo
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl))
|
(list perl))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gmp" ,gmp)
|
(list gmp
|
||||||
("libpcap" ,libpcap)
|
libpcap
|
||||||
("nss" ,nss)
|
nss
|
||||||
("openssl" ,openssl)
|
openssl
|
||||||
("python" ,python-2) ; For "python" and "python2" shebangs
|
python-wrapper
|
||||||
("ruby" ,ruby) ; For genincstats.rb
|
ruby ; For genincstats.rb
|
||||||
("zlib" ,zlib)))
|
zlib))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags
|
||||||
(list "--with-systemwide"
|
(list "--with-systemwide"
|
||||||
|
@ -1018,8 +1019,7 @@ (define-public john-the-ripper-jumbo
|
||||||
(find-files "." "(.*\\.chr|.*\\.lst)")
|
(find-files "." "(.*\\.chr|.*\\.lst)")
|
||||||
(find-files "." ".*\\.conf")))
|
(find-files "." ".*\\.conf")))
|
||||||
(copy-recursively "rules" (string-append datadir "/rules")))
|
(copy-recursively "rules" (string-append datadir "/rules")))
|
||||||
(copy-recursively "../doc" docdir)
|
(copy-recursively "../doc" docdir))))
|
||||||
#t)))
|
|
||||||
(delete 'check) ; Tests need installed .conf files; move after install
|
(delete 'check) ; Tests need installed .conf files; move after install
|
||||||
(add-after 'install 'check
|
(add-after 'install 'check
|
||||||
(lambda args
|
(lambda args
|
||||||
|
|
Loading…
Reference in a new issue