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


                     
                       

                  

                                                                    

    
                           

                                                               

                                             

    
{stdenv, fetchurl}:

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

  src = fetchurl {
    url = http://sg.danny.cz/sg/p/sdparm-1.09.tar.xz;
    sha256 = "0jakqyjwi72zqjzss04bally0xl0lc4710mx8da08vpmir1hfphg";
  };

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