2009-04-16 14:23:53 +02:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2016-04-29 19:38:48 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "sdparm-${version}";
|
|
|
|
version = "1.10";
|
2009-04-16 14:23:53 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-04-29 19:38:48 +02:00
|
|
|
url = "http://sg.danny.cz/sg/p/${name}.tar.xz";
|
|
|
|
sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx";
|
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
|
|
|
};
|
|
|
|
}
|