all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob e7ba8e04572f693699e4c11f769a71fe9b9cb383 2456 bytes (raw)
name: gnu/packages/scsi.scm 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Chris Marusich <cmmarusich@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages scsi)
  #:use-module ((guix licenses)
                #:select (gpl2+ bsd-3))
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public sg3_utils
  (package
    (name "sg3_utils")
    (version "1.42")
    (source (origin
              (method url-fetch)
              (uri (string-append "http://sg.danny.cz/sg/p/sg3_utils-"
                                  version ".tar.xz"))
              (sha256
               (base32
                "1fg71rj0f1gdjmkj0z8wlv46cf9lryjdyjkbi7fjmssgi5jyvblp"))))
    (build-system gnu-build-system)
    (home-page "http://sg.danny.cz/sg/sg3_utils.html")
    (synopsis "SCSI device utilities")
    (description
     "sg3_utils is a collection of utilities for devices that use the Small
Computer System Interface (SCSI) command set.  It includes utilities to read
data from, write data to, control, modify, and query the state of SCSI
devices.  For example, this package provides command-line tools to copy data
based on \"dd\" syntax and semantics (called sg_dd, sgp_dd and sgm_dd), check
INQUIRY data and VPD pages (sg_inq), check mode and log pages (sginfo,
sg_modes and sg_logs), spin up and down disks (sg_start), do self
tests (sg_senddiag), parse sense data, and perform various other functions.
In addition, this package includes a library, called libsgutils, which can be
used in C and C++ programs to interact with SCSI devices.")
    ;; The libsgutils library itself is licensed under bsd-3.  Some tools are
    ;; licensed under bsd-3, also.  Some tools are licensed under gpl2+.
    (license (list gpl2+ bsd-3))))

debug log:

solving e7ba8e0 ...
found e7ba8e0 in https://yhetil.org/guix/87bn0xxafb.fsf@gmail.com/ ||
	https://yhetil.org/guix/87fuq9xawl.fsf@gmail.com/

applying [1/1] https://yhetil.org/guix/87bn0xxafb.fsf@gmail.com/
diff --git a/gnu/packages/scsi.scm b/gnu/packages/scsi.scm
new file mode 100644
index 0000000..e7ba8e0

Checking patch gnu/packages/scsi.scm...
Applied patch gnu/packages/scsi.scm cleanly.

skipping https://yhetil.org/guix/87fuq9xawl.fsf@gmail.com/ for e7ba8e0
index at:
100644 e7ba8e04572f693699e4c11f769a71fe9b9cb383	gnu/packages/scsi.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.