summary refs log tree commit diff
path: root/pkgs/tools/system/sg3_utils/default.nix
blob: e0f30b2db731ae18ea47298c45c8a4b2ac902ac5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "sg3_utils-1.42";

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

  meta = {
    homepage = http://sg.danny.cz/sg/;
    description = "Utilities that send SCSI commands to devices";
    platforms = stdenv.lib.platforms.all;
    maintainers = [ stdenv.lib.maintainers.urkud ];
  };
}