about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/sdparm/default.nix
blob: 8389728f22d83a59c66c2c09ca10b05b9d6584c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{stdenv, fetchurl}:

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

  src = fetchurl {
    url = http://sg.danny.cz/sg/p/sdparm-1.03.tgz;
    sha256 = "067bdhq2qc7h7ykf1yv86s9x12zscpqnsdlnr636a0nv0di2wymq";
  };

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