about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/sg3_utils/default.nix
blob: 45e3287511a3551e8724a90f35f45199513813b4 (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.45";

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

  meta = with stdenv.lib; {
    homepage = "http://sg.danny.cz/sg/";
    description = "Utilities that send SCSI commands to devices";
    platforms = platforms.linux;
    license = with licenses; [ bsd2 gpl2Plus ];
  };
}