Merge pull request #5974 from nckx/update-sdparm

Update sdparm 1.08 -> 1.09
This commit is contained in:
Domen Kožar 2015-01-26 10:39:50 +01:00
commit 142c42ec21

View file

@ -1,16 +1,17 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "sdparm-1.08";
name = "sdparm-1.09";
src = fetchurl {
url = http://sg.danny.cz/sg/p/sdparm-1.08.tgz;
sha256 = "0msy8anggdand1yr50vg2azcfgks7sbfpnqk7xzw9adi2jj7hsrp";
url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz;
sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg";
};
meta = {
meta = with stdenv.lib; {
homepage = http://sg.danny.cz/sg/sdparm.html;
description = "A utility to access SCSI device parameters";
license = stdenv.lib.licenses.free;
license = with licenses; bsd3;
maintainers = with maintainers; [ nckx ];
};
}