mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: tomb: Add lsof input for "ps" and "slam".
* gnu/packages/crypto.scm (tomb)[inputs]: Add lsof. [arguments]: Add it to the wrapper PATH.
This commit is contained in:
parent
4535eb91c3
commit
417df5bb57
1 changed files with 3 additions and 1 deletions
|
@ -47,6 +47,7 @@ (define-module (gnu packages crypto)
|
|||
#:use-module (gnu packages libbsd)
|
||||
#:use-module (gnu packages libffi)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages lsof)
|
||||
#:use-module (gnu packages nettle)
|
||||
#:use-module (gnu packages password-utils)
|
||||
#:use-module (gnu packages perl)
|
||||
|
@ -356,6 +357,7 @@ (define-public tomb
|
|||
("cryptsetup" ,cryptsetup)
|
||||
("e2fsprogs" ,e2fsprogs) ;for mkfs.ext4
|
||||
("gettext" ,gettext-minimal) ;used at runtime
|
||||
("lsof" ,lsof)
|
||||
("mlocate" ,mlocate)
|
||||
("pinentry" ,pinentry)
|
||||
("qrencode" ,qrencode)
|
||||
|
@ -382,7 +384,7 @@ (define-public tomb
|
|||
(or (and=> (which program) dirname)
|
||||
(error "program not found:" program)))
|
||||
'("seq" "mkfs.ext4" "pinentry" "sudo"
|
||||
"gpg" "cryptsetup" "gettext"
|
||||
"gpg" "cryptsetup" "gettext" "lsof"
|
||||
"qrencode" "steghide" "findmnt")))))
|
||||
#t)))
|
||||
(delete 'check)
|
||||
|
|
Loading…
Reference in a new issue