2009-04-16 12:23:53 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2016-04-29 17:38:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "sdparm";
|
2016-04-29 17:38:48 +00:00
|
|
|
version = "1.10";
|
2009-04-16 12:23:53 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://sg.danny.cz/sg/p/${pname}-${version}.tar.xz";
|
2016-04-29 17:38:48 +00:00
|
|
|
sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx";
|
2009-04-16 12:23:53 +00:00
|
|
|
};
|
|
|
|
|
2015-01-26 03:35:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-04-16 12:23:53 +00:00
|
|
|
homepage = http://sg.danny.cz/sg/sdparm.html;
|
|
|
|
description = "A utility to access SCSI device parameters";
|
2015-05-28 17:20:29 +00:00
|
|
|
license = licenses.bsd3;
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2009-04-16 12:23:53 +00:00
|
|
|
};
|
|
|
|
}
|