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

stdenv.mkDerivation rec {
  pname = "sdparm";
  version = "1.11";

  src = fetchurl {
    url = "http://sg.danny.cz/sg/p/${pname}-${version}.tar.xz";
    sha256 = "1nqjc4w2w47zavcbf5xmm53x1zbwgljaw1lpajcdi537cgy32fa8";
  };

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