2010-09-26 19:39:42 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-20 11:23:45 +00:00
|
|
|
name = "sg3_utils-1.44";
|
2010-09-26 19:39:42 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
2018-09-20 11:23:45 +00:00
|
|
|
sha256 = "0yxfbkd48mbzipwmggcvpq60zybsb6anrca878si26z7496nibld";
|
2010-09-26 19:39:42 +00:00
|
|
|
};
|
|
|
|
|
2018-09-12 20:07:50 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-26 19:39:42 +00:00
|
|
|
homepage = http://sg.danny.cz/sg/;
|
|
|
|
description = "Utilities that send SCSI commands to devices";
|
2018-09-12 20:07:50 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = with licenses; [ bsd2 gpl2Plus ];
|
2010-09-26 19:39:42 +00:00
|
|
|
};
|
|
|
|
}
|