summary refs log blame commit diff
path: root/pkgs/os-specific/linux/sdparm/default.nix
blob: 30943d8cd4130ad24e62c1b70e7e30bf4d8bc0ae (plain) (tree)
1
2
3
4
5
6
7
8


                     
                       

                  

                                                                    




                                                               
                                       

    
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "sdparm-1.08";

  src = fetchurl {
    url = http://sg.danny.cz/sg/p/sdparm-1.08.tgz;
    sha256 = "0msy8anggdand1yr50vg2azcfgks7sbfpnqk7xzw9adi2jj7hsrp";
  };

  meta = {
    homepage = http://sg.danny.cz/sg/sdparm.html;
    description = "A utility to access SCSI device parameters";
    license = stdenv.lib.licenses.free;
  };
}