summary refs log tree commit diff
path: root/pkgs/os-specific/linux/sdparm/default.nix
blob: fab13a125c424a59e6b66685f8667b2bb1f00073 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{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 = licenses.bsd3;
    maintainers = with maintainers; [ nckx ];
  };
}