guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: linux: Add lsscsi.


From: guix-commits
Subject: branch master updated: gnu: linux: Add lsscsi.
Date: Tue, 03 Mar 2020 11:21:45 -0500

This is an automated email from the git hooks/post-receive script.

niedzejkob pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new c06c7a3  gnu: linux: Add lsscsi.
c06c7a3 is described below

commit c06c7a3aec38471dae3fb88f64558921003b2590
Author: Vincent Legoll <address@hidden>
AuthorDate: Sat Feb 29 00:19:01 2020 +0100

    gnu: linux: Add lsscsi.
    
    * gnu/packages/linux.scm (lsscsi): New variable.
    
    Signed-off-by: Jakub Kądziołka <address@hidden>
---
 gnu/packages/linux.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 5f2d37d..64ea566 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -41,6 +41,7 @@
 ;;; Copyright © 2020 Oleg Pykhalov <address@hidden>
 ;;; Copyright © 2020 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2020 Chris Marusich <address@hidden>
+;;; Copyright © 2020 Vincent Legoll <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1842,6 +1843,27 @@ IPv6 packet filter.
 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]