2009-04-16 14:23:53 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-01-26 04:35:17 +01:00
|
|
|
name = "sdparm-1.09";
|
2009-04-16 14:23:53 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-01-26 04:35:17 +01:00
|
|
|
url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz;
|
|
|
|
sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg";
|
2009-04-16 14:23:53 +02:00
|
|
|
};
|
|
|
|
|
2015-01-26 04:35:17 +01:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-16 14:23:53 +02:00
|
|
|
homepage = http://sg.danny.cz/sg/sdparm.html;
|
|
|
|
description = "A utility to access SCSI device parameters";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.bsd3;
|
2015-01-26 04:35:17 +01:00
|
|
|
maintainers = with maintainers; [ nckx ];
|
2009-04-16 14:23:53 +02:00
|
|
|
};
|
|
|
|
}
|