2010-09-26 21:39:42 +02:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-07-23 03:29:51 +02:00
|
|
|
name = "sg3_utils-1.31";
|
2010-09-26 21:39:42 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
2011-07-23 03:29:51 +02:00
|
|
|
sha256 = "190hhkhl096fxkspkr93lrq1n79xz5c5i2n4n4g998qc3yv3hjyq";
|
2010-09-26 21:39:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://sg.danny.cz/sg/;
|
|
|
|
description = "Utilities that send SCSI commands to devices";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
|
|
};
|
|
|
|
}
|