mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -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 libbsd)
|
||||||
#:use-module (gnu packages libffi)
|
#:use-module (gnu packages libffi)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
|
#:use-module (gnu packages lsof)
|
||||||
#:use-module (gnu packages nettle)
|
#:use-module (gnu packages nettle)
|
||||||
#:use-module (gnu packages password-utils)
|
#:use-module (gnu packages password-utils)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
|
@ -356,6 +357,7 @@ (define-public tomb
|
||||||
("cryptsetup" ,cryptsetup)
|
("cryptsetup" ,cryptsetup)
|
||||||
("e2fsprogs" ,e2fsprogs) ;for mkfs.ext4
|
("e2fsprogs" ,e2fsprogs) ;for mkfs.ext4
|
||||||
("gettext" ,gettext-minimal) ;used at runtime
|
("gettext" ,gettext-minimal) ;used at runtime
|
||||||
|
("lsof" ,lsof)
|
||||||
("mlocate" ,mlocate)
|
("mlocate" ,mlocate)
|
||||||
("pinentry" ,pinentry)
|
("pinentry" ,pinentry)
|
||||||
("qrencode" ,qrencode)
|
("qrencode" ,qrencode)
|
||||||
|
@ -382,7 +384,7 @@ (define-public tomb
|
||||||
(or (and=> (which program) dirname)
|
(or (and=> (which program) dirname)
|
||||||
(error "program not found:" program)))
|
(error "program not found:" program)))
|
||||||
'("seq" "mkfs.ext4" "pinentry" "sudo"
|
'("seq" "mkfs.ext4" "pinentry" "sudo"
|
||||||
"gpg" "cryptsetup" "gettext"
|
"gpg" "cryptsetup" "gettext" "lsof"
|
||||||
"qrencode" "steghide" "findmnt")))))
|
"qrencode" "steghide" "findmnt")))))
|
||||||
#t)))
|
#t)))
|
||||||
(delete 'check)
|
(delete 'check)
|
||||||
|
|
Loading…
Reference in a new issue