mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: linux: Add lsscsi.
* gnu/packages/linux.scm (lsscsi): New variable. Signed-off-by: Jakub Kądziołka <kuba@kadziolka.net>
This commit is contained in:
parent
7dffb5bace
commit
c06c7a3aec
1 changed files with 22 additions and 0 deletions
|
@ -41,6 +41,7 @@
|
|||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2020 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||
;;; Copyright © 2020 Chris Marusich <cmmarusich@gmail.com>
|
||||
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -1842,6 +1843,27 @@ (define-public iptables
|
|||
Both commands are targeted at system administrators.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public lsscsi
|
||||
(package
|
||||
(name "lsscsi")
|
||||
(version "0.31")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"http://sg.danny.cz/scsi/lsscsi-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ry2y34xmpgxdbfbyvs8cjmbx0fn222yjdab87wj21q60nab5p75"))))
|
||||
(build-system gnu-build-system)
|
||||
(synopsis "Lists information about SCSI or NVMe devices in Linux")
|
||||
(home-page "http://sg.danny.cz/scsi/lsscsi.html")
|
||||
(description
|
||||
"@command{lsscsi} lists SCSI logical units or SCSI targets. It can
|
||||
also list NVMe namespaces or controllers and show the relationship between a
|
||||
device's primary node name, its SCSI generic (sg) node name and its kernel
|
||||
name.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public ebtables
|
||||
(package
|
||||
(name "ebtables")
|
||||
|
|
Loading…
Reference in a new issue