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

stdenv.mkDerivation rec {
  name = "sdparm-${version}";
  version = "1.10";

  src = fetchurl {
    url = "http://sg.danny.cz/sg/p/${name}.tar.xz";
    sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx";
  };

  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 ];
  };
}