1{stdenv, fetchurl}:
2
3stdenv.mkDerivation {
4 name = "sdparm-1.09";
5
6 src = fetchurl {
7 url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz;
8 sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg";
9 };
10
11 meta = with stdenv.lib; {
12 homepage = http://sg.danny.cz/sg/sdparm.html;
13 description = "A utility to access SCSI device parameters";
14 license = licenses.bsd3;
15 maintainers = with maintainers; [ nckx ];
16 };
17}