2010-09-26 19:39:42 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-11-01 21:00:03 +00:00
|
|
|
name = "sg3_utils-1.42";
|
2010-09-26 19:39:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
2016-11-01 21:00:03 +00:00
|
|
|
sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
|
2010-09-26 19:39:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://sg.danny.cz/sg/;
|
|
|
|
description = "Utilities that send SCSI commands to devices";
|
2018-03-25 13:28:48 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = [ ];
|
2010-09-26 19:39:42 +00:00
|
|
|
};
|
|
|
|
}
|