;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Chris Marusich ;;; ;;; 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 . (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 @code{dd} syntax and semantics (called @code{sg_dd}, @code{sgp_dd} and @code{sgm_dd}), check INQUIRY data and VPD pages (@code{sg_inq}), check mode and log pages (@code{sginfo}, @code{sg_modes} and @code{sg_logs}), spin up and down disks (@code{sg_start}), do self tests (@code{sg_senddiag}), parse sense data (@code{sg_decode_sense}), 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)))) >Commit message (Expand)Author an title='2018-05-24 02:34:08 -0400'>2018-05-24Merge branch 'master' into core-updatesMark H Weaver 2018-05-23gnu: Use "code" instead of "indent"....Ricardo Wurmus 2018-04-30Merge branch 'master' into core-updatesMark H Weaver 2018-04-26gnu: qemu: Build with Python 3 and SDL2 support....Rutger Helling 2018-03-14Merge branch 'master' into core-updatesRicardo Wurmus 2018-03-11build-system/gnu: Add 'bootstrap' phase....Ludovic Courtès 2018-03-07gnu: c-reduce: Use HTTPS home page....Tobias Geerinckx-Rice 2018-03-07gnu: c-reduce: Update to 2.6.0....Tobias Geerinckx-Rice 2018-03-02gnu: delta: Remove redundant code....Tobias Geerinckx-Rice 2018-02-22gnu: american-fuzzy-lop: Change custom qemu input....Efraim Flashner 2018-01-16gnu: american-fuzzy-lop: Update to 2.52b....Efraim Flashner 2017-09-20gnu: Use 'modify-phases' syntax....Kei Kebreau 2017-09-04gnu: Put autoconf-related phases immediately after the 'unpack phase....Kei Kebreau 2017-08-17gnu: american-fuzzy-lop: Update to 2.49b....Efraim Flashner 2017-08-17gnu: american-fuzzy-lop: Add support for non-Intel architectures....Efraim Flashner 2017-08-09gnu: stress-make: Patch default shell....Eric Bavier 2017-07-15gnu: Rename (gnu packages qemu) to (gnu packages virtualization)....宋文武